]> git.mxchange.org Git - mailer.git/blobdiff - inc/mysql-connect.php
More XHTML-fied and extended header added to templates
[mailer.git] / inc / mysql-connect.php
index 3ad0efec6165f539c9cd20419c79d397a43b54ae..f1b627cf2bc52d963692661be0eadc9ce4c717ee 100644 (file)
@@ -11,7 +11,7 @@
  * Kurzbeschreibung  : Verbindet zu Ihrer Datenbank                     *
  * -------------------------------------------------------------------- *
  * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author:: stelzi                                                   $ *
  * Needs to be in all Files and every File needs "svn propset           *
@@ -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));