Fix MySQL install, bug fix for issue 132

remotes/origin/stable5
Michael Gapczynski 12 years ago
parent a6e18e0b6d
commit 5aec26a37c
  1. 4
      lib/setup.php

@ -202,7 +202,7 @@ class OC_Setup {
return $error;
}
private static function setupMySQLDatabase($dbhost, $dbuser, $dbpass, $dbtableprefix, $username) {
private static function setupMySQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username) {
//check if the database user has admin right
$connection = @mysql_connect($dbhost, $dbuser, $dbpass);
if(!$connection) {
@ -218,7 +218,7 @@ class OC_Setup {
$dbusername=substr('oc_'.$username, 0, 16);
if($dbusername!=$oldUser) {
//hash the password so we don't need to store the admin config in the config file
$dbpassword=md5(time().$password);
$dbpassword=md5(time().$dbpass);
self::createDBUser($dbusername, $dbpassword, $connection);

Loading…
Cancel
Save