From 477d08b8ee63f16d7aed184e2a351cdc3a78e515 Mon Sep 17 00:00:00 2001 From: sotarok Date: Sat, 11 Apr 2009 14:51:09 +0000 Subject: [PATCH] * replace ini_set to *_include_path() function. --- skel/app.controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skel/app.controller.php b/skel/app.controller.php index 4727030..d1bd3e5 100644 --- a/skel/app.controller.php +++ b/skel/app.controller.php @@ -13,7 +13,7 @@ define('BASE', dirname(dirname(__FILE__))); /** include_path setting (adding "/app" and "/lib" directory to include_path) */ $app = BASE . "/app"; $lib = BASE . "/lib"; -ini_set('include_path', implode(PATH_SEPARATOR, array($app, $lib)) . PATH_SEPARATOR . ini_get('include_path')); +set_include_path(implode(PATH_SEPARATOR, array($app, $lib)) . PATH_SEPARATOR . get_include_path()); /** including application library. */ -- 2.11.0