QA
Dieser Commit ist enthalten in:
Ursprung
2c0641c348
Commit
9b492942ee
2 geänderte Dateien mit 13 neuen und 18 gelöschten Zeilen
|
@ -247,8 +247,7 @@ class IndexController extends Msd_Controller_Action
|
|||
// user is not listed in users.ini
|
||||
break;
|
||||
case Msd_User::SUCCESS:
|
||||
$defaultDb = $this->view->config->getParam('dbuser.defaultDb'
|
||||
);
|
||||
$defaultDb = $this->view->config->getParam('dbuser.defaultDb');
|
||||
|
||||
// set actualDb to defaultDb
|
||||
if ($defaultDb != '') {
|
||||
|
|
|
@ -22,10 +22,7 @@ if (!defined('APPLICATION_ENV')) {
|
|||
}
|
||||
|
||||
// Ensure library/ is on include_path
|
||||
set_include_path(
|
||||
implode(PATH_SEPARATOR, array(LIBRARY_PATH, get_include_path())
|
||||
)
|
||||
);
|
||||
set_include_path(implode(PATH_SEPARATOR, array(LIBRARY_PATH, get_include_path())));
|
||||
|
||||
if (APPLICATION_ENV == 'development' && !class_exists('Debug')) {
|
||||
include_once 'Debug.php';
|
||||
|
@ -40,5 +37,4 @@ $application = new Zend_Application(
|
|||
APPLICATION_ENV,
|
||||
APPLICATION_PATH . '/configs/application.ini'
|
||||
);
|
||||
$application->bootstrap()
|
||||
->run();
|
||||
$application->bootstrap()->run();
|
||||
|
|
Laden …
In neuem Issue referenzieren