Commit 5f533499066aba77848cb19ce645e5734e79686a
1 parent
b865e84b
for windows, made KT_DIR lowercase. solves issues with KTS-1360.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6151 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
0 deletions
config/dmsDefaults.php
| @@ -49,6 +49,7 @@ if (!defined('KT_DIR')) { | @@ -49,6 +49,7 @@ if (!defined('KT_DIR')) { | ||
| 49 | $rootLoc = realpath(dirname(__FILE__) . '/..'); | 49 | $rootLoc = realpath(dirname(__FILE__) . '/..'); |
| 50 | if (OS_WINDOWS) { | 50 | if (OS_WINDOWS) { |
| 51 | $rootLoc = str_replace('\\','/',$rootLoc); | 51 | $rootLoc = str_replace('\\','/',$rootLoc); |
| 52 | + $rootLoc = strtolower($rootLoc); | ||
| 52 | } | 53 | } |
| 53 | define('KT_DIR', $rootLoc); | 54 | define('KT_DIR', $rootLoc); |
| 54 | } | 55 | } |