Skip to content

Commit 383fe68

Browse files
committed
Wrong constant name
1 parent 72638b2 commit 383fe68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Horde/Config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public function checkVersions()
158158
public function configFile()
159159
{
160160
if (defined('HORDE_CONFIG_BASE')) {
161-
$path = HORDE_CONFIG_BASE . DIR_SEPARATOR . $this->_app;
161+
$path = HORDE_CONFIG_BASE . DIRECTORY_SEPARATOR . $this->_app;
162162
} else {
163163
$path = $GLOBALS['registry']->get('fileroot', $this->_app) . '/config';
164164
}
@@ -307,7 +307,7 @@ public function writePHPConfig($formvars, &$php = null)
307307
{
308308
$php = $this->generatePHPConfig($formvars);
309309
if (defined('HORDE_CONFIG_BASE')) {
310-
$path = HORDE_CONFIG_BASE . DIR_SEPARATOR . $this->_app;
310+
$path = HORDE_CONFIG_BASE . DIRECTORY_SEPARATOR . $this->_app;
311311
} else {
312312
$path = $GLOBALS['registry']->get('fileroot', $this->_app) . '/config';
313313
}

0 commit comments

Comments
 (0)