Changeset 1295
- Timestamp:
- 09/18/07 15:30:28 (1 year ago)
- Files:
-
- trunk/wifidog-auth/CHANGELOG (modified) (1 diff)
- trunk/wifidog-auth/wifidog/portal/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wifidog-auth/CHANGELOG
r1294 r1295 1 1 # $Id$ 2 2007-09-18 Benoit Grégoire <bock@step.polymtl.ca> 3 * portal/index.php: Add a call to garbage_collect() to fix #367 4 2 5 2007-09-17 Benoit Grégoire <bock@step.polymtl.ca> 3 6 * SmartyWifidog: If ANY of the mandatory dependencies (not just smarty) are missing, user will be redirected to the install script trunk/wifidog-auth/wifidog/portal/index.php
r1253 r1295 107 107 } 108 108 } 109 109 110 /* 110 111 * If this node has a custom portal defined, and the network config allows it, … … 114 115 115 116 if (!empty ($custom_portal_url) && $network->getCustomPortalRedirectAllowed()) { 117 /** 118 * If the database doesn't get cleaned up by a cron job, we'll do now (normally this is done in ManiUI, but for custom URLs, MainUI may never be instanciated 119 */ 120 if (CONF_USE_CRON_FOR_DB_CLEANUP == false) { 121 garbage_collect(); 122 } 116 123 header("Location: {$custom_portal_url}"); 117 124 exit;
