diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-03 14:33:33 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-03 14:33:33 +0000 |
| commit | ee2882c80fff86f592134de5979302e85668db58 (patch) | |
| tree | 0514b1ff1482bc7e45cc59640c682f9b67e5d4c0 | |
| parent | ff6f120993afc142be18e611e24c6c366b834264 (diff) | |
* another include_path fix
git-svn-id: https://svn.roundcube.net/trunk@1006 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/check.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/roundcubemail/check.php b/roundcubemail/check.php index a21431aa8..6fadaa9db 100644 --- a/roundcubemail/check.php +++ b/roundcubemail/check.php @@ -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/'); |
