BUGFIX Fixed undefined varible $dbname, this should have been $this->database instead

This commit is contained in:
Sean Harvey 2009-06-03 23:35:24 +00:00
parent 39c250af7f
commit 1290b0e4c7

View File

@ -231,7 +231,7 @@ class MSSQLDatabase extends Database {
*/
public function createDatabase() {
$this->query("CREATE DATABASE \"$this->database\"");
$this->selectDatabase($dbname);
$this->selectDatabase($this->database);
}
/**