]> git.mxchange.org Git - mailer.git/commitdiff
IS_LOGGED_IN() renamed to IS_MEMBER(), some HTML fixes
authorRoland Häder <roland@mxchange.org>
Thu, 11 Sep 2008 00:22:43 +0000 (00:22 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 11 Sep 2008 00:22:43 +0000 (00:22 +0000)
59 files changed:
.gitattributes
DOCS/tpl-validator.php [new file with mode: 0644]
DOCS/validator.sh [new file with mode: 0644]
beg.php
inc/databases.php
inc/libs/surfbar_functions.php
inc/modules/frametester.php
inc/modules/guest/what-login.php
inc/modules/login.php
inc/modules/member/action-account.php
inc/modules/member/action-bank.php
inc/modules/member/action-extras.php
inc/modules/member/action-logout.php
inc/modules/member/action-main.php
inc/modules/member/action-order.php
inc/modules/member/action-rals.php
inc/modules/member/action-stats.php
inc/modules/member/action-surfbar.php
inc/modules/member/action-themes.php
inc/modules/member/what-bank_create.php
inc/modules/member/what-bank_deposit.php
inc/modules/member/what-bank_infos.php
inc/modules/member/what-bank_output.php
inc/modules/member/what-bank_withdraw.php
inc/modules/member/what-beg.php
inc/modules/member/what-beg2.php
inc/modules/member/what-bonus.php
inc/modules/member/what-categories.php
inc/modules/member/what-doubler.php
inc/modules/member/what-guest.php
inc/modules/member/what-holiday.php
inc/modules/member/what-html_mail.php
inc/modules/member/what-logout.php
inc/modules/member/what-mydata.php
inc/modules/member/what-newsletter.php
inc/modules/member/what-nickname.php
inc/modules/member/what-order.php
inc/modules/member/what-payout.php
inc/modules/member/what-points.php
inc/modules/member/what-primera.php
inc/modules/member/what-rallyes.php
inc/modules/member/what-reflinks.php
inc/modules/member/what-sponsor.php
inc/modules/member/what-stats.php
inc/modules/member/what-support.php
inc/modules/member/what-surfbar_book.php
inc/modules/member/what-surfbar_start.php
inc/modules/member/what-surfbar_stats.php
inc/modules/member/what-themes.php
inc/modules/member/what-transfer.php
inc/modules/member/what-unconfirmed.php
inc/modules/member/what-welcome.php
inc/modules/member/what-wernis.php
inc/modules/order.php
inc/mysql-manager.php
inc/session.php
modules.php
surfbar.php
templates/de/html/admin/admin_list_surfbar_urls_row.tpl

index 4efde83e257404038747be8ac563ac0b55807d3f..d014e9ac1ee4183d6378bcc5566cb58dfd576da4 100644 (file)
@@ -64,6 +64,8 @@ DOCS/en/rewrite/README.txt -text
 DOCS/en/rewrite/README_htaccess.de -text
 DOCS/en/task/README.txt -text
 DOCS/en/themes/README.txt -text
+DOCS/tpl-validator.php -text
+DOCS/validator.sh -text
 /admin.php -text
 /agb.php -text
 /beg.php -text
diff --git a/DOCS/tpl-validator.php b/DOCS/tpl-validator.php
new file mode 100644 (file)
index 0000000..5576f66
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 09/11/2008 *
+ * ===============                              Last change: 09/11/2008 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : tpl-validator.php                                *
+ * -------------------------------------------------------------------- *
+ * Short description : Only validates templates for correctness         *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Validiert Templates auf korrektes HTML           *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+if ($_SERVER['argc'] < 2) {
+       echo "Usage: ".basename(__FILE__)." <template> [--write]\n\n";
+       echo "Validates a template against the DOM model. Use --write with caution!\n";
+       exit;
+}
+
+$doc = new DOMDocument();
+$doc->formatOutput = true;
+$doc->preserveWhiteSpace = false;
+$doc->encoding = "utf-8";
+$doc->xmlVersion = "1.1";
+$doc->loadHTMLFile($_SERVER['argv'][1]);
+
+$data = $doc->saveHTML();
+$data = str_replace("<br>", "<br />\n", $data);
+$data = str_replace("\n\n", "\n", $data);
+
+$array = explode("\n", $data);
+array_shift($array);
+array_shift($array);
+unset($array[count($array) - 1]);
+unset($array[count($array) - 1]);
+
+$data = implode("\n", $array)."\n";
+
+if (strtolower($_SERVER['arv'][2]) == "--write") {
+       echo "Writing document...\n";
+       file_put_contents($_SERVER['argv'][1], $data);
+}
+
+?>
diff --git a/DOCS/validator.sh b/DOCS/validator.sh
new file mode 100644 (file)
index 0000000..9553900
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+find templates/de/html/ -type f -name *.tpl -exec php DOCS/tpl-validator.php {} \; | grep Warning | cut -d "/" -f 1-5 | grep -v "error parsing attribute name">warnings.log
diff --git a/beg.php b/beg.php
index e402809626df492982bd4b35c509954abd416bfd..a7e4e82aefd70298ab8ad6666bfb94da68145331 100644 (file)
--- a/beg.php
+++ b/beg.php
@@ -75,7 +75,7 @@ if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_install
 
                // Check if locked in so don't pay points
                $login = false; $status = "failed";
-               if (IS_LOGGED_IN()) {
+               if (IS_MEMBER()) {
                        // Logged in user detected!
                        $login = true;
                }
index 341f8e4caf2029a2ad4aea06a05e5924d31a8d38..8ad6fa18e8e2f552f28cccb4ebfb67e0376fa6a4 100644 (file)
@@ -114,7 +114,7 @@ define('USAGE_BASE', "usage");
 define('SERVER_URL', "http://www.mxchange.org");
 
 // This current patch level
-define('CURR_SVN_REVISION', "295");
+define('CURR_SVN_REVISION', "296");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index e64400c5d4362082b9653816134663e484b85b11..a715e8148639c7a61ea698aad275df06229ef702 100644 (file)
@@ -101,7 +101,7 @@ function SURFBAR_MEMBER_ADD_URL ($url) {
        global $_CONFIG;
 
        // Do some pre-checks
-       if (!IS_LOGGED_IN()) {
+       if (!IS_MEMBER()) {
                // Not a member
                return false;
        } elseif (!VALIDATE_URL($url)) {
@@ -421,7 +421,7 @@ function SURFBAR_GET_TOTAL_USER_URLS ($uid=0) {
        global $_CONFIG;
 
        // Is the user 0 and user is logged in?
-       if (($uid == 0) && (IS_LOGGED_IN())) {
+       if (($uid == 0) && (IS_MEMBER())) {
                // Then use this userid
                $uid = $GLOBALS['userid'];
        } elseif ($uid == 0) {
@@ -597,7 +597,7 @@ function SURFBAR_DETERMINE_DEPLETED_USERIDS() {
        $UIDs = array();
 
        // Do we have a current user id?
-       if (IS_LOGGED_IN()) {
+       if (IS_MEMBER()) {
                // Then add this as well
                $UIDs[] = $GLOBALS['userid'];
 
index 49b06b359e17ef12edd66f6b8d131012cad1f3bb..c73bec9636191d7aadde85d93666a2306004b885 100644 (file)
@@ -41,7 +41,7 @@ $MODE = "guest";
 
 if (!empty($_GET['order'])) {
        // Order number placed, is he also logged in?
-       if(IS_LOGGED_IN()) {
+       if(IS_MEMBER()) {
                // Ok, test passed... :)
                $result = SQL_QUERY_ESC("SELECT subject, url FROM "._MYSQL_PREFIX."_pool WHERE id=%s AND sender=%s AND data_type='TEMP' LIMIT 1",
                 array(bigintval($_GET['order']), $GLOBALS['userid']), __FILE__, __LINE__);
index 70652bf9813180ade71ce8055f1d77676a4aee0e..4029789a492509942da8e0bfc7e83195bc3a2159 100644 (file)
@@ -78,7 +78,7 @@ $URL = ""; $ADD = "";
 if (empty($_POST['new_pass'])) $_POST['new_pass'] = "";
 if (empty($_GET['login']))     $_GET['login']     = "";
 
-if (IS_LOGGED_IN()) {
+if (IS_MEMBER()) {
        // Login immidiately...
        $URL = URL."/modules.php?module=login";
 } elseif (isset($_POST['ok'])) {
@@ -160,7 +160,7 @@ if (IS_LOGGED_IN()) {
                                        $GLOBALS['userid'] = bigintval($UID);
                                } else {
                                        // Check for login data
-                                       $login = IS_LOGGED_IN();
+                                       $login = IS_MEMBER();
                                }
 
                                if ($login) {
index 63871f1ecdab71bffb6f51eee62bd24863ea6d4e..f9589cd58628335cb70c7f5719fc04152e472dd7 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        $URL = URL."/modules.php?module=index";
        if ($check == "mem_only") $URL .= "&msg=".urlencode(LANG_MEM_ONLY_1.$GLOBALS['module'].LANG_MEM_ONLY_2);
        LOAD_URL($URL);
@@ -62,7 +62,7 @@ if ($status != "CONFIRMED") {
 } // END - if
 
 // Recheck if he got logged out because bad cookies
-if (!IS_LOGGED_IN()) {
+if (!IS_MEMBER()) {
        $URL = URL."/modules.php?module=index";
        LOAD_URL($URL);
 } // END - if
index 4fca9d942d201ecb7a189a078e5500eb55e49666..020d647461725a80807505a420bd98f438ae7b52 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index b2a8a635090704b96f0ea732f899973df07a89b9..73d7587ba5a43420848ac58fb6cb0647844bceb2 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 4c5e8d6e4fccfb140f33aa1a9d1834714e506dce..a410af8addd723c0ee9ab2d68a4390b20aa6476b 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index af6da02380515d0966d3e725dadf6cf74c82b603..bd6a3a157b6a579e5607679eef856c33492b749d 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 816cac49c55c6c058dde6010618bf97653eb9687..0bee4c93d7c7cdf55d2ca596a651d01fc1101cb3 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index b2524b4ba6c16e7ced882d6200b282f7ad23ebaf..5276096f42b3edf1eecb01604a0c55d1d08361e5 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 4f9ffd18b1d95073ab402c1ab39b536cb8cdaabb..5c92acf49adac7ca5df0f9ec51b287ed3a5ccae4 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 8d731faf70975dc8b87d71a5f8bd0178228c243f..4c53e79aad51753a296fbb6dbc6a0491a3857373 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 3a8201d9505056fd2180e948d9faa7adeb98eaef..b957dd273e278c72c7850921e34b0dfc7e5168c6 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL(URL."/modules.php?module=index");
 } elseif ($BLOCK_MODE) {
        // Block mode detected
index af8452c52940f6411af7e14417aa9ea237c90943..908fe6509818637e3b456f9278526d7e9847af3a 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL("modules.php?module=index");
 }
 
index fda9652096c5dcc8802b51374aa6e7a6c0191212..2d17b4601cc8906e721ede2f88274886cf865051 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index fda9652096c5dcc8802b51374aa6e7a6c0191212..2d17b4601cc8906e721ede2f88274886cf865051 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index fda9652096c5dcc8802b51374aa6e7a6c0191212..2d17b4601cc8906e721ede2f88274886cf865051 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index fda9652096c5dcc8802b51374aa6e7a6c0191212..2d17b4601cc8906e721ede2f88274886cf865051 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index fda9652096c5dcc8802b51374aa6e7a6c0191212..2d17b4601cc8906e721ede2f88274886cf865051 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index eb9c6aa12582cdb6f68c50dd6d834945a142814c..361f86c093b7de98716afad65a01bcd48f86691b 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 07534dab6e9f14f477ea52956c1e5bf5b5083bda..3c61941be4753f07fdca556d38af01265b7adddf 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php[5~?module=index");
 }
index 8ddf806a42b0eae69bf27b794381853029f8d1e9..67ffb33bce29810abd66069c53e618d5b4093e57 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php[5~?module=index");
 }
index 4f2a8ae2386033a3910bb971b4cfd861ff256534..a41582800776fdcbea45e2cd9822f0c258cc1e12 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php[13~?module=index");
 }
index 62f3359a790f3b2ce3bd4cd4e321afc5cbf86ebf..b4bb3fbd021524feb37d7862cfc2e91dfa1eefee 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php[5~?module=index");
 }
index dd688be9bf334f826438c4dd629239728b5906b1..7d77e2d4baaaff108223699ba96662421e187c43 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 2df58e320cb409c3506d8f996ff6aada42c89fa9..42144cd8d9934d834708128753655f008274a473 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 2ce7fd81dcb59abdefc4207f4a92d764f8e15924..ad798d6fe62a2de246bcbf30753c1a7a52da6868 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index d2f8e71bbd83b1eb319b0035e317475d931cae60..45bd0a01de42196eddcdc4cdbf4239d7a2e77d21 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL("modules.php?module=index");
 }
 
index 646a0a8b1c019d0cd2d3c70b2a8724e1f8ba8ec5..a24907380f43f0260e77fa550e62a4bc56beb905 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index eac7c3265fe4af2f5108cd2667ff420aa822b619..9ffe320c879db84f6d242443c46a9844a738ed1f 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index f6802001b7e5b7371ae2a315d8034afcafa72c9a..899305c097c2cfa2af08365c3adae197d82be5e9 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 62aec111c7a41d21de796805af0d33448ce3f7dd..b3e19cf892d3c89bf80c165bcce85f5e69154376 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 48bd9617d28152387dd31009ba62b5f6d480f63f..1a828cdb9c88d6270c1014e5e83e6ee500a2720c 100644 (file)
@@ -36,7 +36,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        // Don't call this directly!
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        // Not logged in
        LOAD_URL("modules.php?module=index");
 } elseif ((!EXT_IS_ACTIVE("payout")) && (!IS_ADMIN())) {
index 88f026fd614f13cbf659a610da7a15f344c6786e..6293845d814d2e848ff713b84b7817c2ce1ef256 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL("modules.php?module=index");
 }
 
index 6ba131bf95e3b7778df1ea01d2d7c601edb000f8..5035bbb89a659fda433a922317713fec277f6cb7 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        // User is not logged in
        LOAD_URL("modules.php?module=index");
 } elseif ((!EXT_IS_ACTIVE("primera")) && (!IS_ADMIN())) {
index 6185904b432c1f65d79d805083c21c48a80e0bbf..97f28f85dd83cf771c059214d591172a744bf202 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index e9dcc54c19449ec91ad1230bd1c5283b911a6c9f..b5c6a37f28dd0ad8745f634f1b87064c726cb2b9 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 6fecc2371af24427ed9f1a18cb41c0b1d498c114..5c0ad0f5a56ad49f6f72a24b5d87d120e1479116 100644 (file)
@@ -36,7 +36,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL(URL."/modules.php?module=index");
 }
index 2e228976215c056dd516c0aea761e78df4c58d10..bed7ab0792938e1914f5229807e7e3532bd515e8 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL("modules.php?module=index");
 }
 
index d98a7808eef7b1c5ace5dbe6a0ae178e21620649..9d01670d98eb0ed50f314200cf86e5d0ec0d92c7 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 13c765104dec5f1149e826b0f87351e4170808d7..d9dda0fb03abbc08b7270e1025aa3a4fa3afa79c 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        // Redirect
        LOAD_URL(URL."/modules.php?module=index");
 } elseif (!EXT_IS_ACTIVE("surfbar")) {
index acb470a3a77c351fed88918dd9959998fdb036f4..73ac3af9c8ca9848a7fd36cde6ff4e13f051f187 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        // Not logged in
        LOAD_URL("modules.php?module=index");
 } elseif (!EXT_IS_ACTIVE("surfbar")) {
index 0b6800a36d8ba4b457fbedbdbb3baf5a89b12c40..515aadbc6c3b2fbeab723f2c21b9bec5d66fc94f 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL(URL."/modules.php?module=index");
 }
 
index 9731f71f5d56a6bf97e19612faed6fc3b523cfc3..d58dd5bbb7e6a8ee6dfddd6de86a9e12c2dc3dc0 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index b521ba218f88e9b9aed24906941adbab6d7a6a45..0e9c148ae811478d6e9b9e6793f8583905bdb465 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL("modules.php?module=index");
 } elseif ((!EXT_IS_ACTIVE("transfer")) && (!IS_ADMIN())) {
        ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "transfer");
index d831b00e966f35ca09679e008211e6221b915fa0..114276f7abdb9902572fad44bf81c31e9ac18436 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        LOAD_URL("modules.php?module=index");
 } elseif (!EXT_IS_ACTIVE("mailid")) {
        LOAD_URL("modules.php?module=login");
index 46dd492a4d7c2ef7f06e8fcf4d368be58b95f54a..8ce43420ffd651db257307f1cb65f79af7d036c7 100644 (file)
@@ -37,7 +37,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
- elseif (!IS_LOGGED_IN())
+ elseif (!IS_MEMBER())
 {
        LOAD_URL("modules.php?module=index");
 }
index 181603bab545bdc82b203d3b6db0fe80c0057236..202c754d2c8f9ebec87cebf91c27bf8e6bd2b3f6 100644 (file)
@@ -35,7 +35,7 @@
 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        // User is not logged in
        LOAD_URL("modules.php?module=index");
 } elseif ((!EXT_IS_ACTIVE("wernis")) && (!IS_ADMIN())) {
index 01f89fabcf6f78d499081c5d6b4fed11070d501f..b0c26bc7af42d42487255500bbbe76b3d8e79c84 100644 (file)
@@ -39,7 +39,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
 } elseif ((!EXT_IS_ACTIVE("order")) && (!IS_ADMIN())) {
        ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "order");
        return;
-} elseif (!IS_LOGGED_IN()) {
+} elseif (!IS_MEMBER()) {
        // Sorry, no guest access!
        $URL = URL."/modules.php?module=index";
 } elseif (empty($_GET['order'])) {
index e7d9adeccac4ac36ac963462518fc9dbf8ee4e7e..6710c1c6f633069abf5d35c46e9c1a0361bc3cc5 100644 (file)
@@ -132,13 +132,13 @@ function CHECK_MODULE($mod) {
        // Check returned values against current access permissions
        //
        //  Admin access            ----- Guest access -----           --- Guest   or   member? ---
-       if ((IS_ADMIN()) || (($locked == "N") && ($admin == "N") && (($mem == "N") || (IS_LOGGED_IN())))) {
+       if ((IS_ADMIN()) || (($locked == "N") && ($admin == "N") && (($mem == "N") || (IS_MEMBER())))) {
                // If you are admin you are welcome for everything!
                $ret = "done";
        } elseif ($locked == "Y") {
                // Module is locked
                $ret = "locked";
-       } elseif (($mem == "Y") && (!IS_LOGGED_IN())) {
+       } elseif (($mem == "Y") && (!IS_MEMBER())) {
                // You have to login first!
                $ret = "mem_only";
        } elseif (($admin == "Y") && (!IS_ADMIN())) {
@@ -538,7 +538,7 @@ function WHAT_IS_VALID($act, $wht, $type="guest")
        }
 }
 //
-function IS_LOGGED_IN()
+function IS_MEMBER()
 {
        global $status, $LAST;
        if (!is_array($LAST)) $LAST = array();
@@ -617,7 +617,7 @@ function UPDATE_LOGIN_DATA ($UPDATE=true) {
        $newl = time() + bigintval(get_session('lifetime'));
 
        // Recheck if logged in
-       if (!IS_LOGGED_IN()) return false;
+       if (!IS_MEMBER()) return false;
 
        // Load last module and last online time
        $result = SQL_QUERY_ESC("SELECT last_module, last_online FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array($GLOBALS['userid']), __FILE__, __LINE__);
@@ -1204,7 +1204,7 @@ function UPDATE_ONLINE_LIST($SID, $mod, $act, $wht)
        if (!empty($GLOBALS['userid']))
        {
                // Update member status only when userid is valid
-               if (($GLOBALS['userid'] > 0) && (IS_LOGGED_IN()))
+               if (($GLOBALS['userid'] > 0) && (IS_MEMBER()))
                {
                        // Is valid user
                        $uid = $GLOBALS['userid'];
index af8eb7c050f9aaec5fe282c789c8fdcf6c0cd142..7710e9bf6553a3f1629d824d1b17c893fc2bbb76 100644 (file)
@@ -91,7 +91,7 @@ if (isset($_SESSION['userid'])) {
        $GLOBALS['userid'] = bigintval($_SESSION['userid']);
 
        // Is it valid?
-       if (!IS_LOGGED_IN()) {
+       if (!IS_MEMBER()) {
                // Then destroy the user id
                destroy_user_session();
        } // END - if
index f4e8cbacfbbea1e21ca627b0a314841b812060c5..8368d269c1bfd7b44c8ba4f57d4c649a744287b9 100644 (file)
@@ -55,7 +55,7 @@ $GLOBALS['module'] = htmlentities(strip_tags($_GET['module']), ENT_QUOTES);
 require ("inc/config.php");
 
 // Check if logged in
-if (IS_LOGGED_IN()) {
+if (IS_MEMBER()) {
        // Is still logged in so we welcome him with his name
        $result = SQL_QUERY_ESC("SELECT surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
         array($GLOBALS['userid']), __FILE__, __LINE__);
index 43da016f1360ceaf0484d38b26e7c39c45ae0be1..f0d1dab1e62f1c4deba399908d6dbb3c94836e39 100644 (file)
@@ -52,7 +52,7 @@ require ("inc/config.php");
 // Is the script installed?
 if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_installed'))) {
        // Only logged in users may use this surfbar!
-       if (!IS_LOGGED_IN()) {
+       if (!IS_MEMBER()) {
                // Redirect
                LOAD_URL(URL."/modules.php?module=index");
        } elseif (!EXT_IS_ACTIVE("surfbar")) {
index 105442ddbcdafeb401c2fb9912aa9f85b715df14..4ef9670913e5a53e97cfdd3ec69a1d6ff324f053 100644 (file)
@@ -15,7 +15,7 @@
                $content[costs] {!POINTS!}
        </TD>
        <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
-               $content[views_total]
+               <a href="{!URL!}/modules.php?module=admin&amp;what=surfbar_stats&amp;url_id=$content[id]">$content[views_total]</a>
        </TD>
        <TD align="center" class="bottom2 right2 switch_sw$content[sw]">
                $content[status]