Fixed creation of a new database
Dieser Commit ist enthalten in:
Ursprung
88791f1a9c
Commit
c897ea9217
1 geänderte Dateien mit 2 neuen und 4 gelöschten Zeilen
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Laden …
In neuem Issue referenzieren