More cleanups and small improvements (e.g. usage of wrappers).
authorRoland Haeder <roland@mxchange.org>
Thu, 17 Apr 2014 21:37:30 +0000 (23:37 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 17 Apr 2014 21:37:30 +0000 (23:37 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
inc/classes/rdf.class.php
inc/extensions/user/mode-update.php
inc/libs/register_functions.php
inc/libs/security_functions.php

index fd0ff99b1b672f075f4adfc7ee64580270945e90..a30a4e5b19a67b10cc574653a00f7965cac9d7a3 100644 (file)
@@ -42,7 +42,7 @@
  * @copyright Copyright (c) 2001 fase4.com. All rights reserved.
  * @author    Stefan Saasen <s@fase4.com>
  * @author    Roland Haeder <webmaster@mxchange.org>
- * @version   1.7 ($Date$Revision: 856 $
+ * @version   1.7
  * @access    public
  */
 
index 833e2fd47888d814670b3d629bfc8d06d79b73c0..ce8703b3dafee7b0153fd7c90b68e3ac12650632 100644 (file)
@@ -401,7 +401,7 @@ INDEX (`refid`)",
 
                        case '0.5.3': // SQL queries for v0.5.3
                                // Is the PHP extension 'recode' activated
-                               if (!extension_loaded('recode')) {
+                               if (!isPhpExtensionLoaded('recode')) {
                                        // This update requires 'recode'
                                        enableExtensionReportingFailure();
                                } // END - if
index c6f458a565c3e8126a3432188ed8f3061c939085..5bd7d384258341264fb78f2145307038fdfb6569 100644 (file)
@@ -334,7 +334,7 @@ function doGenericUserRegistration () {
        assert(isset($GLOBALS['register_confirm_hash']));
 
        // Only comment this in if you develop
-       //* DEVELOPER-CODE: */ return TRUE;
+       //* DEVELOPER-CODE: */ $GLOBALS['register_userid'] = 1; return TRUE;
 
        // Create user's account...
        sqlQueryEscaped("INSERT INTO
@@ -419,6 +419,9 @@ function doGenericUserRegistration () {
                return FALSE;
        } // END - if
 
+       // Set new user id globally
+       $GLOBALS['register_userid'] = $filterData['register_insert_id'];
+
        // Shall we reset random refid? Only possible with latest ext-user
        if (isExtensionInstalledAndNewer('user', '0.3.4')) {
                // Reset all accounts, registration is done
index 2c0ca74bff50a8fc224c7e5f7f0abc2d2328b21b..e2568b5c3c4261fa292e690566ae995e4d56d255 100644 (file)
@@ -163,17 +163,17 @@ if (isPhpVersionEqualNewer('5.0')) {
 } // END - if
 
 // Check if important arrays are found and define them if missing
-if (!isset($_SERVER)) {
+if ((!isset($_SERVER)) || (!is_array($_SERVER))) {
        global $_SERVER;
        $_SERVER = $GLOBALS['_SERVER'];
 } // END - if
 
-if (!isset($_GET)) {
+if ((!isset($_GET)) || (!is_array($_GET))) {
        global $_GET;
        $_GET = $GLOBALS['_GET'];
 } // END - if
 
-if (!isset($_POST)) {
+if ((!isset($_POST)) || (!is_array($_POST))) {
        global $_POST;
        $_POST = $GLOBALS['_POST'];
 } // END - if
@@ -226,10 +226,10 @@ $GLOBALS['url_chars'] = array(
 if (is_array($_GET)) {
        foreach ($_GET as $seckey => $secvalue) {
                if (is_array($secvalue)) {
-                       // Throw arrays away...
+                       // Throw arrays away ...
                        unset($_GET[$seckey]);
                } else {
-                       // Only variables are allowed (non-array) but we secure them all!
+                       // Only variables are allowed (non-array) but we secure them all.
                        $_GET[$seckey] = str_replace($GLOBALS['security_chars']['from'], $GLOBALS['security_chars']['to'], $_GET[$seckey]);
 
                        // Strip all other out