From: Roland Häder Date: Sat, 27 Sep 2008 18:55:29 +0000 (+0000) Subject: Fix for task X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=b91124016796c63c4e709abcb6937d920b109f6c Fix for task --- diff --git a/inc/databases.php b/inc/databases.php index d6cbc5cba4..bd9c3feeec 100644 --- a/inc/databases.php +++ b/inc/databases.php @@ -113,7 +113,7 @@ define('USAGE_BASE', "usage"); define('SERVER_URL', "http://www.mxchange.org"); // This current patch level -define('CURR_SVN_REVISION', "402"); +define('CURR_SVN_REVISION', "403"); // Take a prime number which is long (if you know a longer one please try it out!) define('_PRIME', 591623); diff --git a/inc/libs/task_functions.php b/inc/libs/task_functions.php index 2d06f6575f..426309f221 100644 --- a/inc/libs/task_functions.php +++ b/inc/libs/task_functions.php @@ -276,9 +276,9 @@ function OUTPUT_ADVANCED_OVERVIEW (&$result_main) $EXCLUDE_LIST = " AND d.userid != ".$_CONFIG['def_refid'].""; // Check for more extensions - if (EXT_IS_ACTIVE("beg")) $EXCLUDE_LIST .= " AND d.userid != c.beg_uid"; - if (EXT_IS_ACTIVE("bonus")) $EXCLUDE_LIST .= " AND d.userid != c.bonus_uid"; - if (EXT_IS_ACTIVE("doubler")) $EXCLUDE_LIST .= " AND d.userid != c.doubler_uid"; + if (EXT_IS_ACTIVE("beg")) $EXCLUDE_LIST .= " AND d.userid != ".$_CONFIG['beg_uid'].""; + if (EXT_IS_ACTIVE("bonus")) $EXCLUDE_LIST .= " AND d.userid != ".$_CONFIG['bonus_uid'].""; + if (EXT_IS_ACTIVE("doubler")) $EXCLUDE_LIST .= " AND d.userid != ".$_CONFIG['doubler_uid'].""; if (GET_EXT_VERSION("holiday") >= "0.1.3") $EXCLUDE_LIST .= " AND d.holiday_active='N'"; // Check for all accounts