1
0
Fork 0

Continued to switch the old configuration handling to the new one.

Dieser Commit ist enthalten in:
DSB 2012-08-04 17:09:48 +00:00
Ursprung 025b5c339d
Commit ae87af916f
54 geänderte Dateien mit 501 neuen und 269 gelöschten Zeilen

Datei anzeigen

@ -29,7 +29,7 @@ class Msd_Log
/**
* Init file handles
*
* @return void
* @return Msd_Log
*/
public function __construct()
{
@ -41,8 +41,8 @@ class Msd_Log
$this->handle[self::ERROR] = false;
// get config
$config = Msd_Configuration::getInstance();
$this->_paths = (object)$config->get('paths');
$config = Msd_Registry::getConfig();
$this->_paths = (object) $config->getParam('paths');
}
/**