Index: branches/5.3.x/core/install.php =================================================================== diff -u -N -r15578 -r15649 --- branches/5.3.x/core/install.php (.../install.php) (revision 15578) +++ branches/5.3.x/core/install.php (.../install.php) (revision 15649) @@ -1,6 +1,6 @@ Conn->doInsert($fields_hash, TABLE_PREFIX.'SystemSettings'); } + + $random_string = $this->Application->ConfigValue('RandomString'); + + if ( !$random_string ) { + $user_helper = $this->Application->recallObject('UserHelper'); + /* @var $user_helper UserHelper */ + + $random_string = $user_helper->generateRandomString(64, true, true); + $this->Application->SetConfigValue('RandomString', $random_string); + } + break; }