]> git.mxchange.org Git - mailer.git/blobdiff - inc/gen_sql_patches.php
Rewrites/fixes for handling config entries in SQLs
[mailer.git] / inc / gen_sql_patches.php
index a358c8d74a31730107d78eb09ce915688c3d742c..d853f1ca8d9b9b1b56619e90b1827f27d2c1db99 100644 (file)
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 // Some security stuff...
 if (!defined('__SECURITY')) {
        die();
 // Some security stuff...
 if (!defined('__SECURITY')) {
        die();
-}
-
-// Check for version of sql_patches
-if (getExtensionVersion('sql_patches') < '0.3.6') return false;
+} // END - if
 
 // Check if there is no scrambling string
 if (getConfig('pass_scramble') == '') {
 
 // Check if there is no scrambling string
 if (getConfig('pass_scramble') == '') {
@@ -77,11 +75,8 @@ if (getConfig('file_hash') == '') {
                $fileHash
        );
 
                $fileHash
        );
 
-       // Count of chars to be taken from back of the string
-       $nums = mt_rand(40, 45);
-
        // Generate secret key from a randomized string
        // Generate secret key from a randomized string
-       $secretKey = substr(sha1(generatePassword(mt_rand(128, 256))), -$nums);
+       $secretKey = sha1(generateHash(mt_rand(128, 256)));
 
        // File hash was never created
        writeToFile($FQFN, $secretKey);
 
        // File hash was never created
        writeToFile($FQFN, $secretKey);
@@ -116,5 +111,5 @@ if (getConfig('file_hash') == '') {
        } // END - if
 } // END - if
 
        } // END - if
 } // END - if
 
-//
-?>
\ No newline at end of file
+// [EOF]
+?>