diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-22 17:06:54 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-22 17:06:54 -0400 |
commit | 97341a4c94879cb055de13729a8a6feef4a67a81 (patch) | |
tree | 749043849373410477e9019890f3c5adb3a7e0c1 /lib/common.php | |
parent | dadac11aa45af220673dbff6e372bb8ee5634393 (diff) |
fix include path bug
darcs-hash:20080822210654-84dde-68595effcfc11d5e4497c72b189b5f046a8b3ca6.gz
Diffstat (limited to 'lib/common.php')
-rw-r--r-- | lib/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.php b/lib/common.php index 6db9f91fe..94f720137 100644 --- a/lib/common.php +++ b/lib/common.php @@ -32,7 +32,7 @@ define_syslog_variables(); # append our extlib dir as the last-resort place to find libs -set_include_path(array_merge(get_include_path(), array(INSTALLDIR . '/extlib/'))); +set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/'); # global configuration object |