A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / admin / what-list_beg.php
index 7bb2df327c1fd13baee35c7198e03b7d9d4f2fa7..a26f7262a4889b93494b8c5a21a71b4b6b1d158f 100644 (file)
@@ -42,21 +42,21 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        require($INC);
 }
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
-if (getConfig('beg_rallye') == "Y") {
+if (getConfig('beg_rallye') == 'Y') {
        // Shall I withdraw now?
        if (REQUEST_ISSET_POST(('withdraw'))) {
                // Okay, let's prepare...
                $curr = date("m", time()) - 1;
                if (strlen($curr) == 1) $curr = "0".$curr;
                UPDATE_CONFIG("last_month", $curr);
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BEG_WITHDRAW_PREPARED'));
+               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BEG_WITHDRAW_PREPARED'));
        } // END - if
 
        // Autopurge installed?
-       $lastOnline = "%s"; $ONLINE = "";
-       if (EXT_IS_ACTIVE("autopurge")) {
+       $lastOnline = "%s"; $ONLINE = '';
+       if (EXT_IS_ACTIVE('autopurge')) {
                // Use last online timestamp to keep inactive members away from here
                $lastOnline   = " AND last_online >= (UNIX_TIMESTAMP() - %s)";
                $ONLINE = getConfig('ap_inactive_since');
@@ -71,10 +71,10 @@ ORDER BY beg_points DESC, last_online DESC, userid",
 
        if (SQL_NUMROWS($result) > 0) {
                // List users
-               $OUT = "";$SW = 2; $cnt = 1; $total = 0;
+               $OUT = '';$SW = 2; $cnt = 1; $total = 0;
                while ($content = SQL_FETCHARRAY($result)) {
                        // Init variables
-                       $WIN1 = ""; $WIN2 = "";
+                       $WIN1 = ''; $WIN2 = '';
                        if ($cnt <= getConfig('beg_ranks')) {
                                // Maybe he can win his active beg?
                                $WIN1 = "<strong>";
@@ -115,21 +115,21 @@ ORDER BY beg_points DESC, last_online DESC, userid",
                }
 
                // Prepare constant for timemark
-               if (EXT_IS_ACTIVE("autopurge")) {
+               if (EXT_IS_ACTIVE('autopurge')) {
                        define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(time() - getConfig('ap_inactive_since'), "2"));
                } else {
-                       define('__AUTOPURGE_TIMEOUT', sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), "autopurge"));
+                       define('__AUTOPURGE_TIMEOUT', sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'autopurge'));
                }
 
                // Load final template
                LOAD_TEMPLATE("admin_list_beg");
        } else {
                // No one has joined the begging rallye...
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BEG_NO_RALLYE'));
+               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BEG_NO_RALLYE'));
        }
 } else {
        // Rallye deactivated
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BEG_RALLYE_DEACTIVATED'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BEG_RALLYE_DEACTIVATED'));
 }
 
 //