1
0
Fork 0
InstallController:
- finished changing installation to new configuration class
Dieser Commit ist enthalten in:
DSB 2012-08-22 16:43:15 +00:00
Ursprung f0aeca93a9
Commit a2ac0b33e4
5 geänderte Dateien mit 37 neuen und 21 gelöschten Zeilen

Datei anzeigen

@ -105,14 +105,14 @@ class Msd_Config
* Saves the configuration for the next request.
* The filename is used for static storage.
*
* @param string filename The file name of the fiel to save (without path)
*
* @return bool
*/
public function save($configFilenameAndPath = null)
public function save($filename = null)
{
//$configFilename = $this->getParam('configFile');
//echo "Dateiname: ". $configFilename;
if ($configFilenameAndPath !== null) {
$this->_ioHandler->setConfigFilename(basename($configFilenameAndPath));
if ($filename !== null) {
$this->_ioHandler->setConfigFilename($filename);
}
return $this->_ioHandler->save($this->_config);