X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=88081d85906d8c016ed813fe6202f5a39cf587fa;hp=f40c4aec44632bca0583f9c54343caa7fa5836ad;hb=116747e4dba29e9e2e4daa82c45d8bbb302e9378;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7 diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index f40c4aec44..88081d8590 100644 --- a/inc/modules/admin/what-usr_online.php +++ b/inc/modules/admin/what-usr_online.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Wer ist wo? (KEINE Untermenues anhaengen!) * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,21 +38,21 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); // Online stats are only working if extension ext-online is installed -if (EXT_IS_ACTIVE("online")) { +if (EXT_IS_ACTIVE('online')) { // Count guests, members and admins // @TODO Rewrite these constants // @TODO Add a filter for sponsor - define('_GUESTS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='N'")); - define('_ADMINS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='Y'")); - define('_MEMBERS_ONLINE', GET_TOTAL_DATA("N", "online", "id", "is_admin", true)); + define('_GUESTS_ONLINE' , GET_TOTAL_DATA("N", 'online', "id", "is_admin", true, " AND is_member='N'")); + define('_ADMINS_ONLINE' , GET_TOTAL_DATA("N", 'online', "id", "is_admin", true, " AND is_member='Y'")); + define('_MEMBERS_ONLINE', GET_TOTAL_DATA("N", 'online', "id", "is_admin", true)); // Load template LOAD_TEMPLATE("admin_mini_online"); @@ -71,10 +71,10 @@ if (EXT_IS_ACTIVE("online")) { if (empty($content['action'])) $content['action'] = "---"; if (empty($content['what'])) $content['what'] = "---"; - if ($content['is_admin'] == "Y") { + if ($content['is_admin'] == 'Y') { // Is an administrator $content['userid'] = getMessage('_IS_ADMIN'); - } elseif (($content['is_member'] == "N") && ($content['is_admin'] == "N")) { + } elseif (($content['is_member'] == 'N') && ($content['is_admin'] == 'N')) { // Is a guest $content['userid'] = getMessage('_IS_GUEST'); } elseif ($content['userid'] > 0) { @@ -112,7 +112,7 @@ if (EXT_IS_ACTIVE("online")) { } // END - if } else { // Online statistics deactivated! - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); } //