X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-order.php;h=4a5a4ef831cb6787c6c2b83c90461105eacfca54;hb=22ba710434fb8b31e8961976ee4a31ae28b4509d;hp=f891d0609fa8f7d36799e234691f702d188df50f;hpb=1c62a6c2a4ed2bb170e0f1888899625e67a27947;p=mailer.git diff --git a/inc/modules/member/what-order.php b/inc/modules/member/what-order.php index f891d0609f..4a5a4ef831 100644 --- a/inc/modules/member/what-order.php +++ b/inc/modules/member/what-order.php @@ -41,7 +41,7 @@ if (!defined('__SECURITY')) { } // Add description as navigation point -addMenuDescription('member', __FILE__); +addYouAreHereLink('member', __FILE__); if ((!isExtensionActive('order')) && (!isAdmin())) { loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('order')); @@ -120,7 +120,7 @@ LIMIT 1", } // END - if // And shall I check that his URL is not in the black list? - if (isUrlBlaskEnabled()) { + if (isUrlBlacklistEnabled()) { // Ok, I do that for you know... $result = SQL_QUERY_ESC("SELECT UNIX_TIMESTAMP(`timestamp`) AS tstamp FROM `{?_MYSQL_PREFIX?}_url_blacklist` WHERE `url`='%s' LIMIT 1", array(postRequestParameter('url')), __FILE__, __LINE__); @@ -210,7 +210,7 @@ ORDER BY // Do we enougth receivers left? if (SQL_NUMROWS($result) >= postRequestParameter('receiver')) { // Load receivers from database - $TEST = array(); $cnt = '0'; + $TEST = array(); $count = '0'; while ($holidayContent = SQL_FETCHARRAY($result)) { if (isExtensionInstalledAndNewer('holiday', '0.1.3')) { // Check for his holiday status @@ -231,7 +231,7 @@ LIMIT 1", if ($holidayContent['userid'] > 0) { // Add receiver $TEST[] = $holidayContent['userid']; - $cnt++; + $count++; } // END - if } // END - while @@ -441,7 +441,7 @@ ORDER BY array(bigintval($categoriesContent['id']), getMemberId()), __FILE__, __LINE__); $userid_cnt = '0'; - while (list($ucat) = SQL_FETCHROW($result_userids)) { + while (list($userid) = SQL_FETCHROW($result_userids)) { // Check for holiday system $isHolidayActive = false; if (isExtensionInstalledAndNewer('holiday', '0.1.3')) { @@ -462,28 +462,28 @@ WHERE h.holiday_start < UNIX_TIMESTAMP() AND h.holiday_end > UNIX_TIMESTAMP() LIMIT 1", - array(bigintval($ucat)), __FILE__, __LINE__); + array(bigintval($userid)), __FILE__, __LINE__); // Fetch entry - list($cnt) = SQL_FETCHROW($result_holiday); + list($count) = SQL_FETCHROW($result_holiday); // Free memory SQL_FREERESULT($result_holiday); // Is holiday is active? - $isHolidayActive = ($cont == 1); + $isHolidayActive = ($count == 1); } // END - if if ($isHolidayActive === false) { // Check if the user want's to receive mails? $result_ver = SQL_QUERY_ESC("SELECT `zip` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s".$HTML." AND `receive_mails` > 0 AND `status`='CONFIRMED' LIMIT 1", - array(bigintval($ucat)), __FILE__, __LINE__); + array(bigintval($userid)), __FILE__, __LINE__); if ((SQL_NUMROWS($result_ver) == 1) && (isPostRequestParameterSet('zip')) && (getConfig('order_multi_page') == 'Y')) { // Get zip code list($zip) = SQL_FETCHROW($result_ver); if (substr($zip, 0, strlen(postRequestParameter('zip'))) == postRequestParameter('zip')) { - // Ok, ZIP part is found + // Ok, ZIP code part is found $userid_cnt++; } // END - if } else { @@ -671,7 +671,7 @@ LIMIT 1", } } else { // Please confirm some mails first - loadTemplate('admin_settings_saved', false, getMaskedMessage('MEMBER_LINKS_LEFT'), $links); + loadTemplate('admin_settings_saved', false, '{%message,MEMBER_LINKS_LEFT=' . $links . '%}', $links); } if (!empty($url)) {