]> git.mxchange.org Git - mailer.git/commitdiff
Some minor improvements
authorRoland Häder <roland@mxchange.org>
Sun, 21 Oct 2012 12:40:14 +0000 (12:40 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 21 Oct 2012 12:40:14 +0000 (12:40 +0000)
click.php
inc/config-local.php.dist
inc/libs/task_functions.php
inc/mysql-manager.php
inc/wrapper-functions.php

index c3659428ea1fa448f5c56f52070559abe7583a0a..e323b7639dc84758d6e991ee6e9de6b02fce510d 100644 (file)
--- a/click.php
+++ b/click.php
@@ -54,7 +54,7 @@ setContentType('text/html');
 // Run filter chain
 runFilterChain('handle_click_php');
 
-// Load index page
+// Load index page (if click.php call was not detected)
 redirectToUrl('modules.php?module=index');
 
 // Shutdown (if reached)
index 348ecbb7285ad85d14f3dd8922a020eba449d8e9..d98b9dc8a572181bb7a939f6d920f50de7d919a5 100644 (file)
@@ -101,7 +101,7 @@ setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
 // CFG: DEBUG-REGEX (comment in to debug regular expressions)
 //setConfigEntry('DEBUG_REGEX', 'Y');
 
-// CFG: ALLOW-TESTER0ACCOUNTS (comment in to allow tester accounts being re-included)
+// CFG: ALLOW-TESTER-ACCOUNTS (comment in to allow tester accounts being re-included)
 //setConfigEntry('ALLOW_TESTER_ACCOUNTS', 'Y');
 
 // Your MySQL data (we don't like M$ SQL ;-) )
index 4184c6722ae2742475a671e5ea35ec8db72d85d5..a46d8323a9e2df5bc44605bf7a77559165f1c889 100644 (file)
@@ -100,7 +100,7 @@ function outputAdvancedOverview (&$result_main) {
        // Unconfirmed accounts
        $value = getTotalUnconfirmedUser();
        if ($value > 0) {
-               $content['unconfirmed_members'] = '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;status=UNCONFIRMED%}">' . $value . '</a>';
+               $content['unconfirmed_members'] = '<a href="{%url=modules.php?module=admin&amp;what=list_user&amp;status=unconfirmed%}">' . $value . '</a>';
        } // END - if
 
        // Locked accounts
index e5fe404f48a6f692d9ffe14e7057869974d01459..5ddcf36369720afeffb55901dd9f5470a112a02e 100644 (file)
@@ -990,14 +990,13 @@ function removeReceiver (&$receivers, $key, $userid, $poolId, $statsId = 0, $isB
 
 // Calculate sum (default) or count records of given criteria
 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = FALSE, $add = '', $mode = '=') {
-       // Init count/sum
-       $data['res'] = '0';
-
+       // Debug message
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',tableName=' . $tableName . ',lookFor=' . $lookFor . ',whereStatement=' . $whereStatement . ',add=' . $add);
        if ((empty($search)) && ($search != '0')) {
                // Count or sum whole table?
                if ($countRows === TRUE) {
                        // Count whole table
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'COUNT!');
                        $result = SQL_QUERY_ESC('SELECT COUNT(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`' . $add . ' LIMIT 1',
                                array(
                                        $lookFor,
@@ -1005,6 +1004,7 @@ function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatemen
                                ), __FUNCTION__, __LINE__);
                } else {
                        // Sum whole table
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'SUM!');
                        $result = SQL_QUERY_ESC('SELECT SUM(`%s`) AS `res` FROM `{?_MYSQL_PREFIX?}_%s`' . $add . ' LIMIT 1',
                                array(
                                        $lookFor,
index 31e30cbefe98f21f223b82595b9e59b4244f8fe7..c6bb6cb804ecd93cbb87af715678cf737b5791ff 100644 (file)
@@ -1222,6 +1222,7 @@ function getTotalConfirmedUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -1238,6 +1239,7 @@ function getTotalUnconfirmedUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -1254,6 +1256,7 @@ function getTotalLockedUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }
 
@@ -1270,6 +1273,7 @@ function getTotalRandomRefidUser () {
        } // END - if
 
        // Return cached value
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, __FUNCTION__ . '()=' . $GLOBALS[__FUNCTION__]);
        return $GLOBALS[__FUNCTION__];
 }