From: Roland Häder Date: Fri, 6 Mar 2009 22:27:01 +0000 (+0000) Subject: Fatal error fixed. :( X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=34a0f08e9ce0c2c12036cb1acd9123607011f165 Fatal error fixed. :( --- 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));