// 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();
// 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));