From 34a0f08e9ce0c2c12036cb1acd9123607011f165 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 6 Mar 2009 22:27:01 +0000 Subject: [PATCH] Fatal error fixed. :( --- inc/mysql-connect.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 3ad0efec61..1155964ae2 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -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)); -- 2.30.2