diff options
author | till <till@php.net> | 2008-02-03 14:33:33 +0000 |
---|---|---|
committer | till <till@php.net> | 2008-02-03 14:33:33 +0000 |
commit | 24a423350352fb5336bd783e76b95cfd4c16bab9 (patch) | |
tree | a67471262f837ff473d0ffec8094811f5e754176 | |
parent | 2b9b6bfab0c5d99e7571d69bc94a6ea69f39932d (diff) |
* another include_path fix
-rw-r--r-- | check.php | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -36,10 +36,15 @@ * @todo Check IMAP settings. * @todo Check SMTP settings. * @todo HTML/CSS to make it pretty. + * @todo In devel-next, use bootstrap. */ $include_path = dirname(__FILE__) . '/program/lib/'; -$include_path .= PATH_SEPARATOR . get_include_path(); +$include_path .= PATH_SEPARATOR; +$include_path .= dirname(__FILE__) . '/program/'; +$include_path .= PATH_SEPARATOR; +$include_path .= get_include_path(); + set_include_path($include_path); $writable_dirs = array('logs/', 'temp/'); |