- Long variables $HTTP_x_VARS rewritten to short $_x
authorRoland Häder <roland@mxchange.org>
Mon, 25 Aug 2008 15:58:14 +0000 (15:58 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 25 Aug 2008 15:58:14 +0000 (15:58 +0000)
- Tabs removed in .htaccess files
- Typo fixed (thx 2 monakoianar)
- Checking for updates fixed

DOCS/de/rewrite/.htaccess
inc/functions.php
inc/modules/admin/what-updates.php
sponsor_confirm.php
sponsor_ref.php
templates/de/html/ext/ext_rallye.tpl

index 114ce6623fb5892c1fabe654cb1d6dc13de24e23..b5b79254796e3755d2c574c5c0120e11bf22c08c 100644 (file)
@@ -1,5 +1,5 @@
-RewriteEngine  On\r
-\r
-RewriteRule    ^cms/(.*)/wht/(.*)$                             modules.php?module=$1&what=$2                                           [L]\r
-RewriteRule    ^cms/(.*)/act/(.*)$                             modules.php?module=$1&action=$2                                 [L]\r
-RewriteRule    ^cms/(.*)$                                      modules.php?module=$1                                                   [L]\r
+RewriteEngine  On
+
+RewriteRule    ^cms/(.*)/wht/(.*)$             modules.php?module=$1&what=$2           [L]
+RewriteRule    ^cms/(.*)/act/(.*)$             modules.php?module=$1&action=$2         [L]
+RewriteRule    ^cms/(.*)$                              modules.php?module=$1                           [L]
index d1dffd29b99c1eb04bfb7dfe199127fa17756e00..c59093bd5004e57c7190a10929cc6e1c0099dc23 100644 (file)
@@ -1646,8 +1646,10 @@ function ADD_EMAIL_NAV($PAGES, $offset, $show_form, $colspan, $return=false) {
 
 //
 function MXCHANGE_OPEN ($script) {
+       //* DEBUG */ print("SCRIPT=".$script."<br />\n");
        // Compile the script name
        $script = COMPILE_CODE($script);
+       //* DEBUG */ print("SCRIPT=".$script."<br />\n");
 
        // Use default SERVER_URL by default... ;) So?
        $url = SERVER_URL;
@@ -1664,10 +1666,20 @@ function MXCHANGE_OPEN ($script) {
        if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
 
        // Generate relative URL
-       $script = substr($script, (strlen($url) + 7));
+       //* DEBUG */ print("SCRIPT=".$script."<br />\n");
+       if (substr(strtolower($script), 0, 7) == "http://") {
+               // But only if http:// is in front!
+               $script = substr($script, (strlen($url) + 7));
+       } elseif (substr(strtolower($script), 0, 8) == "https://") {
+               // Does this work?!
+               $script = substr($script, (strlen($url) + 8));
+       }
+
+       //* DEBUG */ print("SCRIPT=".$script."<br />\n");
        if (substr($script, 0, 1) == "/") $script = substr($script, 1);
 
        // Open connection
+       //* DEBUG */ die("SCRIPT=".$script."<br />\n");
        $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
        if (!$fp) {
                // Failed!
index c2c31ac2ebc9d2fc88de4323f2e423a7ca92dcd5..a2d5dbc4620fb340bebdd2f8816abb519ef09b1a 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
+
 // Add description as navigation point
 ADD_DESCR("admin", basename(__FILE__));
 
@@ -45,30 +45,25 @@ $ONLINE['code'] = "???";
 
 // Get response from our server in an array
 $response = MXCHANGE_OPEN("check-updates2.php");
-if (empty($response[0]) && empty($response[1]) && empty($response[2]))
-{
+
+if (empty($response[0]) && empty($response[1]) && empty($response[2])) {
        // Error!
        $response = array("", "", "");
-}
- else
-{
+} else {
        // Analyse header for response code
-       if (ereg("200 OK", $response[0]))
-       {
+       if (ereg("200 OK", $response[0])) {
                // Found, kill header
                $pos = 0;
-               foreach($response as $k=>$v)
-               {
+               foreach($response as $k => $v) {
                        $v = trim($v);
-                       if (empty($v))
-                       {
+                       if (empty($v)) {
                                // Header ends here (+1)
                                $pos = $k + 1; break;
                        }
                }
+
                $response2 = array();
-               for($i = $pos; $i < count($response); $i++)
-               {
+               for($i = $pos; $i < count($response); $i++) {
                        $response2[] = trim($response[$i]);
                }
                $response = $response2; unset($response2);
@@ -87,27 +82,23 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]))
                        'ctime' => array()
                );
 
-               if (($response[2] != "[EOF]") && ($ONLINE['version'] == FULL_VERSION))
-               {
+               if (($response[2] != "[EOF]") && ($ONLINE['version'] == FULL_VERSION)) {
                        // We have found new patches (newer than FULL_VERSION)
                        $max = str_replace("\n", "", $response[sizeof($response) - 2]); $TOTAL_SIZE = "0";
 
                        // Maximum of available pacthes extracted (above). Now we can get all informations
-                       for ($idx = 0; $idx < $max; $idx++)
-                       {
+                       for ($idx = 0; $idx < $max; $idx++) {
                                // List only newer patches
                                $TEST = substr(str_replace("\n", "", $response[$idx * 5 + 2]), 0, strlen($_CONFIG['patch_level']));
 
                                // I have removed the addional test for the stored timemark in database or you cannot find
                                // new updates on my server when you haven't installed it before I upload a patch... :-(
-                               if (bigintval($TEST) > bigintval($_CONFIG['patch_level']))
-                               {
+                               if (bigintval($TEST) > bigintval($_CONFIG['patch_level'])) {
                                        // Copy every data from the response array
                                        $PATCHES['fname'][] = str_replace("\n", "", $response[$idx * 5 + 2]);
                                        $PATCHES['fsize'][] = str_replace("\n", "", $response[$idx * 5 + 3]);
                                        $PATCHES['ctime'][] = str_replace("\n", "", $response[$idx * 5 + 4]);
-                                       switch (GET_LANGUAGE())
-                                       {
+                                       switch (GET_LANGUAGE()) {
                                                case "de": $PATCHES['descr'][] = str_replace("\n", "", $response[$idx * 5 + 5]); break; // Load german description
                                                default  : $PATCHES['descr'][] = str_replace("\n", "", $response[$idx * 5 + 6]); break; // Load english description as default
                                        }
@@ -116,41 +107,33 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]))
                                        $TOTAL_SIZE += $PATCHES['fsize'][$idx];
                                }
                        }
+
                        array_pk_sort($PATCHES, array("ctime", "fname"));
 
                        // All done here!
                        $ONLINE['code'] = "200 OK";
                }
-       }
-        else
-       {
+       } else {
                // 404 / 403 error from server
                $ONLINE['code'] = $response[0];
        }
 }
 
-OPEN_TABLE("100%", "admin_content", "center");
 // Is a newer version available?
-if (empty($ONLINE['version']))
-{
+if (empty($ONLINE['version'])) {
        // Disconnected?
        LOAD_TEMPLATE("admin_settings_saved", false, "<FONT class=\"admin_failed\">".ADMIN_CANNOT_CHECK_VERSION." (".$ONLINE['code'].")</FONT>");
-}
- elseif ($ONLINE['version'] != FULL_VERSION)
-{
+} elseif ($ONLINE['version'] != FULL_VERSION) {
        // New full-version available (all previous released patches are included in this version!)
        define('__ONLINE_VERSION', $ONLINE['version']);
        define('__ONLINE_CHANGE' , MAKE_DATETIME($ONLINE['changed'], "2"));
 
        // Load template
        LOAD_TEMPLATE("admin_update_download");
-}
- elseif (sizeof($PATCHES['fname']) > 0)
-{
+} elseif (sizeof($PATCHES['fname']) > 0) {
        // Some patches are available
        $OUT = ""; $SW = "2";
-       foreach ($PATCHES['fname'] as $idx=>$file)
-       {
+       foreach ($PATCHES['fname'] as $idx => $file) {
                $SIZE = TRANSLATE_COMMA(round($PATCHES['fsize'][$idx]/102.4)/10);
                $content = array(
                        'sw'          => $SW,
@@ -175,12 +158,10 @@ if (empty($ONLINE['version']))
 
        // Load main template
        LOAD_TEMPLATE("admin_patches");
-}
- else
-{
+} else {
        // You have the latest version!
        LOAD_TEMPLATE("admin_settings_saved", false, NO_UPDATES_AVAILABLE);
 }
-CLOSE_TABLE();
+
 //
 ?>
index 85cdfdde0b34b2fb05627d8fdfae3ebcf5df4341..85cbbf61c9429d276c0cd64bc839beb496fa93a9 100644 (file)
@@ -37,28 +37,25 @@ require_once("inc/libs/security_functions.php");
 require ("inc/config.php");
 
 // Is the script installed?
-if (defined('mxchange_installed') && (mxchange_installed))
-{
+if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_installed'))) {
        // Base URL for redirection
        $URL = URL."/modules.php?module=index&amp;what=sponsor_login&hash=";
-       if (empty($HTTP_GET_VARS['hash']))
-       {
+       if (empty($_GET['hash'])) {
                // No refid and we add our refid (don't forget to set $def_refid!)
                $URL = URL."/modules.php?module=index";
-       }
-        else
-       {
+       } else {
                // We have an refid here. So we simply add it
-               $URL .= $HTTP_GET_VARS['hash'];
+               $URL .= SQL_ESCAPE($_GET['hash']);
        }
+
        // Load the URL
        LOAD_URL($URL);
        // Redirection should be done here
-}
- else
-{
+
+} else {
        // You have to configure first!
        LOAD_URL(URL."/install.php");
 }
+
 // Really all done here... ;-)
 ?>
index 101bbb1f5ea113164a766b28eb1483c9b006e6ad..6f68a9ed5909c73b1ef1fa8d083528eb6927430d 100644 (file)
@@ -37,23 +37,19 @@ require_once("inc/libs/security_functions.php");
 require ("inc/config.php");
 
 // Redirect only to registration page when this script is installed
-if (defined('mxchange_installed') && (mxchange_installed))
-{
+if (defined('mxchange_installed') && (isBooleanConstantAndTrue(mxchange_installed))) {
        // Base URL for redirection
        $URL = URL."/modules.php?module=index&what=sponsor_reg&refid=";
 
        // Get referral ID from ref or refid variable
        $ref = 0;
-       if (!empty($HTTP_GET_VARS['ref']))        $ref = $HTTP_GET_VARS['ref'];
-        elseif (!empty($HTTP_GET_VARS['refid'])) $ref = $HTTP_GET_VARS['refid'];
+       if (!empty($_GET['ref']))        $ref = bigintval($_GET['ref']);
+        elseif (!empty($_GET['refid'])) $ref = bigintval($_GET['refid']);
 
-       if (!empty($ref))
-       {
+       if (!empty($ref)) {
                // We have an refid here. So we simply add it
                $URL .= $ref;
-       }
-        else
-       {
+       } else {
                // No refid so we redirect to the index page
                $URL = URL."/index.php";
        }
@@ -62,12 +58,10 @@ if (defined('mxchange_installed') && (mxchange_installed))
        LOAD_URL($URL);
 
        // Redirection should be done here
-}
- else
-{
+} else {
        // You have to configure first!
        LOAD_URL(URL."/install.php");
 }
-// Really all done here... ;-)
 
+// Really all done here... ;-)
 ?>
index dc11b032d263d65464c72b9a5716fdb94ebd9dbe..f98dfafa05008b0a7707616a6dc981954aebc4fe 100644 (file)
@@ -1,6 +1,6 @@
 Starten Sie mit dieser Erweiterung vollautomatisierte Rallyes! Nun
 k&ouml;nnen Sie auch eine mindestens zu erreichende Mitgliederanzahl und
-Minimum zu belegender Pl&auml;ze angeben. Nur noch Einrichten und
+Minimum zu belegender Pl&auml;tze angeben. Nur noch Einrichten und
 Freigeben m&uuml;ssen Sie die Rallye. Den Rest erledigt das Script
 f&uuml;r Sie.
 <strong>Vorsicht!</strong>