From 59f53b8f7ee03b43cb6f7e9af2804289cea1e7b6 Mon Sep 17 00:00:00 2001 From: lLefevre Date: Tue, 29 May 2012 14:11:55 +0000 Subject: [PATCH] [-] BO : #PSCFV-2583 fix customers which are displaying in notifications --- classes/Notification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Notification.php b/classes/Notification.php index a163ffb89..aa64c78fc 100644 --- a/classes/Notification.php +++ b/classes/Notification.php @@ -102,7 +102,7 @@ class NotificationCore $sql = ' SELECT t.`id_'.bqSQL($type).'` FROM `'._DB_PREFIX_.bqSQL($type).'` t - WHERE t.`id_'.bqSQL($type).'` > '.(int)$id_last_element. + WHERE t.`deleted` = 0 AND t.`id_'.bqSQL($type).'` > '.(int)$id_last_element. Shop::addSqlRestriction(false, 't').' ORDER BY t.`id_'.bqSQL($type).'` DESC ';