QA:
- removed unnecessary directory separator constant DS
Dieser Commit ist enthalten in:
Ursprung
6bcfcaec43
Commit
e41324b2f9
1 geänderte Dateien mit 1 neuen und 4 gelöschten Zeilen
|
@ -202,10 +202,7 @@ class ConfigController extends Zend_Controller_Action
|
||||||
*/
|
*/
|
||||||
private function _getSubformIni($subform)
|
private function _getSubformIni($subform)
|
||||||
{
|
{
|
||||||
$subFormIni = new Zend_Config_Ini(
|
$subFormIni = new Zend_Config_Ini(APPLICATION_PATH . '/forms/Config/' . $subform . '.ini');
|
||||||
APPLICATION_PATH . DS . 'forms' . DS . 'Config' . DS . $subform .
|
|
||||||
'.ini'
|
|
||||||
);
|
|
||||||
$options = array('displayGroupPrefixPath' => $subform . '_');
|
$options = array('displayGroupPrefixPath' => $subform . '_');
|
||||||
return new Zend_Form_SubForm($subFormIni, $options);
|
return new Zend_Form_SubForm($subFormIni, $options);
|
||||||
}
|
}
|
||||||
|
|
Laden …
In neuem Issue referenzieren