diff options
Diffstat (limited to 'globe.php')
-rw-r--r-- | globe.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -174,7 +174,8 @@ Function CheckAuth($page) { //TODO: Contains domain !!
Function DoRedirect($message = "Thanks", $to = NULL, $duration = "3") {
- $to=(is_null($to)?$mydomain:$to);
+ global $mydomain;
+ $to = (is_null($to)?$mydomain:$to);
if ($duration == 0) {
header("Location: $to");
|