X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_notifications.php;h=deb3f600a94f28a2681e240e4a2483aa5a61e3cd;hp=625df8f4d9540a6c9d8c636bd6cdd98f3987bdb2;hb=30ae22f62ae87c53a56baf0d134569ba91011111;hpb=76fd13e5938a334f08e43893eb9a4ff49f72bf07 diff --git a/inc/modules/admin/what-list_notifications.php b/inc/modules/admin/what-list_notifications.php index 625df8f4d9..deb3f600a9 100644 --- a/inc/modules/admin/what-list_notifications.php +++ b/inc/modules/admin/what-list_notifications.php @@ -78,14 +78,14 @@ $add = ' LIMIT ' . (bigintval(getRequestParameter('offset')) * bigintval(getRequ // Add limitation if (!empty($SQL2)) $SQL2 .= $add; -if ((isExtensionActive('bonus')) && (SQL_NUMROWS($result_max) > 0) && (!empty($SQL2))) { +if ((isExtensionActive('bonus')) && (!SQL_HASHZERONUMS($result_max)) && (!empty($SQL2))) { // Run SQL query for notification mails $result_bonus = SQL_QUERY($SQL2, __FILE__, __LINE__); // Load bonus mails only when extension is active - if (SQL_NUMROWS($result_bonus) > 0) { + if (!SQL_HASZERONUMS($result_bonus)) { // Calculate pages - $PAGES = round(SQL_NUMROWS($result_bonus) / getConfig('mails_page') + 0.5); + $numPages = round(SQL_NUMROWS($result_bonus) / getConfig('mails_page') + 0.5); // List emails $OUT = ''; $content = array(); @@ -101,8 +101,7 @@ if ((isExtensionActive('bonus')) && (SQL_NUMROWS($result_max) > 0) && (!empty($S } // END - if // Add navigation (without change box but with colspan=3) - $content['nav'] = ''; - if ($PAGES > 1) $content['nav'] = addEmailNavigation($PAGES, getConfig('mails_page'), false, 3, true); + $content['nav'] = addEmailNavigation($numPages, getConfig('mails_page'), false, 3, true); // Prepare content $content['rows'] = $OUT; @@ -112,7 +111,7 @@ if ((isExtensionActive('bonus')) && (SQL_NUMROWS($result_max) > 0) && (!empty($S } } elseif ((SQL_NUMROWS($result_max) === 0) && (is_resource($result_max))) { // No notifications found - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_NOTIFICATIONS')); + loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_NOTIFICATIONS--}'); } // [EOF]