Changeset 1164

Show
Ignore:
Timestamp:
01/07/07 22:45:34 (6 years ago)
Author:
benoitg
Message:
  • page.php: Fix missing retrieval of DB instance.
Location:
trunk/wifidog-auth
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/CHANGELOG

    r1163 r1164  
    22        * FormSelectGenerator.php: Fix incorrect $this reference in isPresent().  The bug would only manifest 
    33         itself from the FlickrPhotostream's admin interface. 
     4        * page.php:  Fix missing retrieval of DB instance. 
    45 
    562007-01-03 Benoit Grégoire  <bock@step.polymtl.ca> 
  • trunk/wifidog-auth/wifidog/cron/page.php

    r1128 r1164  
    8585        $sql = "SELECT node_id FROM nodes WHERE node_deployment_status = 'DEPLOYED'"; 
    8686    $nodes_results = null; 
     87    $db = AbstractDb::getObject(); 
    8788    $db->execSql($sql, $nodes_results, false); 
    8889