1
0
Fork 0
Dieser Commit ist enthalten in:
DSB 2012-08-04 17:36:51 +00:00
Ursprung 2c0641c348
Commit 9b492942ee
2 geänderte Dateien mit 13 neuen und 18 gelöschten Zeilen

Datei anzeigen

@ -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 != '') {

Datei anzeigen

@ -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();