Changeset 945

Show
Ignore:
Timestamp:
02/13/06 06:28:18 (7 years ago)
Author:
rob_janes
Message:

added new way to call common.php in crons cleanup and page
added vacuum.php cron

Location:
trunk/wifidog-auth
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/CHANGELOG

    r942 r945  
     12006-02-13 Rob Janes <janes.rob@gmail.com> 
     2    * cron/cleanup.php needed new way to call common.php 
     3        * added cron/vacuum.php to round things out 
     4 
    152006-02-07 Benoit Grégoire  <bock@step.polymtl.ca> 
    26        * Fix a bunch of file inclusion bugs in the statistics subsystem.   
  • trunk/wifidog-auth/wifidog/cron/cleanup.php

    r916 r945  
    4545 * Load required files 
    4646 */ 
    47 require_once('../include/common.php'); 
     47require_once(dirname(__FILE__) . '/../include/common.php'); 
    4848 
    4949garbage_collect(); 
  • trunk/wifidog-auth/wifidog/cron/page.php

    r916 r945  
    4545 * Load required files 
    4646 */ 
    47 require_once('../include/common.php'); 
     47require_once(dirname(__FILE__) . '/../include/common.php'); 
    4848 
    4949require_once('classes/Network.php');