]> git.mxchange.org Git - mailer.git/blobdiff - inc/gen_sql_patches.php
Better randomizer chossen (rand() does only create 32767 different numbers under...
[mailer.git] / inc / gen_sql_patches.php
index 0903d68470947c1253782fe39a7ee8a4119bfc3b..8c54d294aa7a71699516dd038989f031b20b2d27 100644 (file)
@@ -38,7 +38,7 @@ if (!defined('__SECURITY')) {
 }
 
 // Check for version of sql_patches
-if (GET_EXT_VERSION("sql_patches") < "0.3.6") return false;
+if (EXT_VERSION_IS_OLDER("sql_patches", "0.3.6")) return false;
 
 // Check if there is no scrambling string
 if (empty($_CONFIG['pass_scramble'])) {
@@ -77,7 +77,7 @@ if (empty($_CONFIG['file_hash'])) {
        if ($fp != false) {
                // Could write to secret file! So let's generate the secret key...
                // 1. Count of chars to be taken from back of the string
-               $nums = rand(40, 45);
+               $nums = mt_rand(40, 45);
                // 2. Generate secret key from a randomized string
                $secretKey = substr(generateHash(GEN_PASS(rand(128, 256))), -$nums);
                // 3. Write the key to the file