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) --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 09c4dc8c7..445a8fa75 100644 --- a/index.php +++ b/index.php @@ -5,8 +5,8 @@ exit; } - set_include_path(get_include_path() . PATH_SEPARATOR . - dirname(__FILE__) ."/include"); + set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR . + get_include_path()); require_once "functions.php"; require_once "sessions.php"; -- cgit v1.2.3