diff options
author | Arun Persaud <arun@nubati.net> | 2007-12-17 10:17:50 +0100 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-12-17 10:17:50 +0100 |
commit | ad48a970a52fc44b65176b951a15b9846a290bab (patch) | |
tree | 8153c3fafe6a26e19dbeac9f96fb711bde767d5d /config.php_template | |
parent | e7e64b1ada481710704c16bfb8ee4a7c337dc8f1 (diff) | |
download | e-DoKo-ad48a970a52fc44b65176b951a15b9846a290bab.tar.gz e-DoKo-ad48a970a52fc44b65176b951a15b9846a290bab.tar.bz2 e-DoKo-ad48a970a52fc44b65176b951a15b9846a290bab.zip |
BUGFIX: use of local web links now possible
before I used a lot of http:// requests although the files were in the
same domain, now local links with absolute paths are used.
Diffstat (limited to 'config.php_template')
-rw-r--r-- | config.php_template | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config.php_template b/config.php_template index 761d889..0ccd540 100644 --- a/config.php_template +++ b/config.php_template @@ -27,8 +27,10 @@ /* used as the reply email in each email */ $EMAIL_REPLY=""; - /* this should point to your index.file, probably without the http:// to avoid extra requests */ - $host = "http://.../index.php" + /* this should point to your index.file and to your domain*/ + $INDEX = "/index.php"; + $HOST = "http://www.example.com"; + /* the default timezone for you domain */ $defaulttimezone = date_default_timezone_get(); ?>
\ No newline at end of file |