Changeset 723
- Timestamp:
- 09/08/05 00:22:11 (8 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
wifidog/portal/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/ChangeLog
r722 r723 1 2005-09-08 Benoit Grégoire <bock@step.polymtl.ca> 2 * portal/index.php: Custom portal redirect now operational. 3 1 4 2005-09-08 Benoit Grégoire <bock@step.polymtl.ca> 2 5 * MainUI: Move call to garbage_collect() here. -
trunk/wifidog-auth/wifidog/portal/index.php
r722 r723 44 44 45 45 /* If this node has a custom portal defined, and the network config allows it, redirect to the custom portal */ 46 if(!empty($node->getCustomPortalRedirectUrl()) && $network->getCustomPortalRedirectAllowed()) 47 { 48 header("Location: {$node->getCustomPortalRedirectUrl()}"); 46 $custom_portal_url = $node->getCustomPortalRedirectUrl(); 47 if(!empty($custom_portal_url) && $network->getCustomPortalRedirectAllowed()) 48 { 49 header("Location: {$custom_portal_url}"); 49 50 } 50 51
