Fatal error fixed. :(
authorRoland Häder <roland@mxchange.org>
Fri, 6 Mar 2009 22:27:01 +0000 (22:27 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 6 Mar 2009 22:27:01 +0000 (22:27 +0000)
inc/mysql-connect.php

index 3ad0efec6165f539c9cd20419c79d397a43b54ae..1155964ae2f523f3566445aeb953e9321aa2be10 100644 (file)
@@ -160,9 +160,7 @@ if ((!isInstalling()) && (isInstalled())) {
 
                                // Load all active extension including language files when not upgrading.
                                // Check module for testing and count one click
-                               $dummy = checkModulePermissions($GLOBALS['module']);
-                               if ($dummy == "done") countModuleHit($GLOBALS['module']);
-                               unset($dummy);
+                               if (checkModulePermissions($GLOBALS['module']) == "done") countModuleHit($GLOBALS['module']);
 
                                // Shall we activate the exchange?
                                if (getConfig('activate_xchange') > 0) activateExchange();
@@ -170,11 +168,7 @@ if ((!isInstalling()) && (isInstalled())) {
                                // Is the extension sql_patches installed and at least 0.3.6?
                                if (GET_EXT_VERSION("sql_patches") >= "0.3.6") {
                                        // Generate random number
-                                       if (isset(getUserId())) {
-                                               define('RAND_NUMBER', generateRandomCodde(10, mt_rand(10000,32766), getUserId(), ""));
-                                       } else {
-                                               define('RAND_NUMBER', generateRandomCodde(10, mt_rand(10000,32766), 0, ""));
-                                       }
+                                       define('RAND_NUMBER', generateRandomCodde(10, mt_rand(10000,32766), getUserId(), ""));
                                } else {
                                        // Generate weak (!!!) code
                                        define('RAND_NUMBER', mt_rand(1000000, 9999999));