Changeset 942
- Timestamp:
- 02/06/06 16:04:21 (3 years ago)
- Files:
-
- trunk/wifidog-auth/CHANGELOG (modified) (2 diffs)
- trunk/wifidog-auth/wifidog/admin/stats_show_graph.php (modified) (1 diff)
- trunk/wifidog-auth/wifidog/classes/StatisticGraph.php (modified) (1 diff)
- trunk/wifidog-auth/wifidog/classes/Statistics.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wifidog-auth/CHANGELOG
r940 r942 1 2006-02-07 Benoit Grégoire <bock@step.polymtl.ca> 2 * Fix a bunch of file inclusion bugs in the statistics subsystem. 3 This is only a ad-hac fix. It seems the requires for just about every class have been stripped off. 4 This must be fixed, all classes should require_once all classes or include that they need that isn't 5 included by a parent class. 6 1 7 2006-02-06 Benoit Grégoire <bock@step.polymtl.ca> 2 8 * wifidog/local_content/default/hotspot_logo.jpg: Delete deprecated file … … 29 35 * updated installation file to represent all the new modules that can be 30 36 installed to use all WiFiDog features 31 37 32 38 2006-01-31 Benoit Grégoire <bock@step.polymtl.ca> 33 39 * path_defines_base.php: Fix syntax errors in the exception thrown. Add more meaningfull output trunk/wifidog-auth/wifidog/admin/stats_show_graph.php
r914 r942 46 46 * @link http://www.wifidog.org/ 47 47 */ 48 require_once ('../include/path_defines_base.php'); 48 49 49 50 if (empty($_REQUEST['graph_class'])) { trunk/wifidog-auth/wifidog/classes/StatisticGraph.php
r915 r942 47 47 */ 48 48 require_once('classes/Statistics.php'); 49 49 require_once('classes/Session.php'); 50 50 /** 51 51 * An abstract class. All statistics must inherit from this class trunk/wifidog-auth/wifidog/classes/Statistics.php
r930 r942 51 51 * @copyright 2004-2006 Benoit Gregoire, Technologies Coeus inc. 52 52 */ 53 54 require_once('include/common.php'); 53 55 class Statistics 54 56 {
