From 97341a4c94879cb055de13729a8a6feef4a67a81 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 22 Aug 2008 17:06:54 -0400 Subject: [PATCH] fix include path bug darcs-hash:20080822210654-84dde-68595effcfc11d5e4497c72b189b5f046a8b3ca6.gz --- lib/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.php b/lib/common.php index 6db9f91fe4..94f720137b 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