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 /register.php | |
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 'register.php')
-rw-r--r-- | register.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/register.php b/register.php index 7c3a373..80f569b 100644 --- a/register.php +++ b/register.php @@ -24,6 +24,7 @@ output_header(); /* new user wants to register */ if(myisset("Rfullname","Remail","Rpassword","Rtimezone") ) { + global $HOST,$INDEX; $ok=1; if(DB_get_userid_by_name($_REQUEST["Rfullname"])) { @@ -44,7 +45,7 @@ if(myisset("Rfullname","Remail","Rpassword","Rtimezone") ) if($r) echo " Welcome to e-DoKo, you are now registered, please visit the". - " <a href=\"$host\">homepage</a> to continue."; + " <a href=\"".$HOST.$INDEX."\">homepage</a> to continue."; else echo " something went wrong, couldn't add you to the database, please contact $ADMIN_NAME at $ADMIN_EMAIL."; } |