MSD-19
InstallController: - finished changing installation to new configuration class
Dieser Commit ist enthalten in:
Ursprung
f0aeca93a9
Commit
a2ac0b33e4
5 geänderte Dateien mit 37 neuen und 21 gelöschten Zeilen
|
|
@ -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);
|
||||
|
|
|
|||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren