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

Datei anzeigen

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