From e51f9d5026f8dde48e78510f51814e2a9f60c949 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Wed, 27 Jun 2018 10:23:51 +0200 Subject: [PATCH] Set the limit to 100, wrongly set to 10 in previous commit --- notifications/inc/class.notifications_ajax.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/inc/class.notifications_ajax.inc.php b/notifications/inc/class.notifications_ajax.inc.php index 1becf74759..c720603269 100644 --- a/notifications/inc/class.notifications_ajax.inc.php +++ b/notifications/inc/class.notifications_ajax.inc.php @@ -180,7 +180,7 @@ class notifications_ajax { 'account_id' => $this->recipient->account_id, 'notify_type' => self::_type ), - __LINE__,__FILE__,0 ,'ORDER BY notify_id DESC',self::_appname, 10); + __LINE__,__FILE__,0 ,'ORDER BY notify_id DESC',self::_appname, 100); $result = array(); if ($rs->NumRows() > 0) { foreach ($rs as $notification) {