Skip to content

Commit

Permalink
do not show inactive cookies in table
Browse files Browse the repository at this point in the history
  • Loading branch information
kingschnulli committed May 11, 2020
1 parent 55e50a1 commit 760e53c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function loadAllCookies()
$sTable = getViewName('compliancecookies');
$db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb();

$sQ = "SELECT $sFields FROM $sTable WHERE $sTable.oxshopid = $sShopId";
$sQ = "SELECT $sFields FROM $sTable WHERE $sTable.oxactive = 1 AND $sTable.oxshopid = $sShopId";
$this->selectString($sQ);
}

Expand Down

0 comments on commit 760e53c

Please sign in to comment.