1
0
Fork 0

Fixed creation of a new database

Dieser Commit ist enthalten in:
DSB 2012-08-09 18:06:21 +00:00
Ursprung 88791f1a9c
Commit c897ea9217
1 geänderte Dateien mit 2 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -179,10 +179,7 @@ class SqlController extends Msd_Controller_Action
$newDbInfo['dbCollation']
);
//db created - refresh db list for menu
$this->view->config->set(
'dynamic.dbActual',
$newDbInfo['dbName']
);
$this->_dynamicConfig->setParam('dbActual', $newDbInfo['dbName']);
$this->_refreshDbList('create.database');
} catch (Msd_Exception $e) {
$dbCreated = false;
@ -195,6 +192,7 @@ class SqlController extends Msd_Controller_Action
$this->view->errorInfo = $errorInfo;
}
$this->view->newDbInfo = $newDbInfo;
$this->view->dynamicConfig = $this->_dynamicConfig;
}
/**