From 88e8fb3a7132d1321ab65b66a19a67df890c402d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Dec 2012 13:41:22 +0400 Subject: modify include path order (closes #514) --- api/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api') diff --git a/api/index.php b/api/index.php index b74ea3c56..9b92dcadd 100644 --- a/api/index.php +++ b/api/index.php @@ -3,10 +3,10 @@ require_once "../config.php"; - set_include_path(get_include_path() . PATH_SEPARATOR . - dirname(__FILE__) . PATH_SEPARATOR . + set_include_path(dirname(__FILE__) . PATH_SEPARATOR . dirname(dirname(__FILE__)) . PATH_SEPARATOR . - dirname(dirname(__FILE__)) . "/include" ); + dirname(dirname(__FILE__)) . "/include" . PATH_SEPARATOR . + get_include_path()); chdir(".."); -- cgit v1.2.3