summaryrefslogtreecommitdiffstats
path: root/stats.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-12-17 10:17:50 +0100
committerArun Persaud <arun@nubati.net>2007-12-17 10:17:50 +0100
commitad48a970a52fc44b65176b951a15b9846a290bab (patch)
tree8153c3fafe6a26e19dbeac9f96fb711bde767d5d /stats.php
parente7e64b1ada481710704c16bfb8ee4a7c337dc8f1 (diff)
downloade-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 'stats.php')
-rw-r--r--stats.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/stats.php b/stats.php
index bab9823..44378d4 100644
--- a/stats.php
+++ b/stats.php
@@ -29,7 +29,7 @@ if(myisset("logout"))
session_destroy();
$_SESSION = array();
echo "<div class=\"message\"><span class=\"bigger\">You are now logged out!</span><br />\n".
- "(<a href=\"$host\">This will take you back to the home-page</a>)</div>";
+ "(<a href=\"$INDEX\">This will take you back to the home-page</a>)</div>";
}
/* user status page */
else if( isset($_SESSION["name"]) )
@@ -228,7 +228,7 @@ else if( isset($_SESSION["name"]) )
{
/* send them back to the login page */
echo "<div class=\"message\"><span class=\"bigger\">You need to log in!</span><br />\n".
- "(<a href=\"$host\">This will take you back to the login-page</a>)</div>";
+ "(<a href=\"$INDEX\">This will take you back to the login-page</a>)</div>";
}
output_footer();