Changeset 1272
- Timestamp:
- 07/25/07 13:56:15 (6 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 4 modified
-
CHANGELOG (modified) (1 diff)
-
wifidog/admin/import_user_database.php (modified) (1 diff)
-
wifidog/classes/DependenciesList.php (modified) (1 diff)
-
wifidog/classes/GenericDataObject.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/CHANGELOG
r1271 r1272 5 5 * Content.php: Fix warning when selecting owners. Fix dangling metadata objects when deleting an object. 6 6 * Statistics::getDateRangeUI(): Make days end a minute before midnight, not a minute before noon, DOH! 7 7 * import_user_database.php: Fix permission call systax error. That does't mean the script works as a whole, it hasn't been maintained for years. 8 * DependenciesList.php: Make it extend GenericDataObject after all. Fixes problem displaying it in the generic editor. 9 8 10 2007-07-22 Benoit Grégoire <bock@step.polymtl.ca> 9 11 * generic_object_admin.pgp: Fix problems when creating new content objects. Fix problems including the content type classes. -
trunk/wifidog-auth/wifidog/admin/import_user_database.php
r1249 r1272 48 48 require_once('classes/Server.php'); 49 49 50 Security::requirePermission( 'SERVER_PERM_EDIT_SERVER_CONFIG', Server::getServer());50 Security::requirePermission(Permission::P('SERVER_PERM_EDIT_SERVER_CONFIG'), Server::getServer()); 51 51 $db = AbstractDb::getObject(); 52 52 $html = ''; -
trunk/wifidog-auth/wifidog/classes/DependenciesList.php
r1264 r1272 69 69 /*WARNING: You must NOT require anything, or extend anything except Dependency.php. DependenciesList is used from the install script.*/ 70 70 require_once ('classes/Dependency.php'); 71 class DependenciesList 71 require_once ('classes/GenericDataObject.php'); 72 73 class DependenciesList extends GenericDataObject 72 74 { 73 75 public static function &getObject($id) -
trunk/wifidog-auth/wifidog/classes/GenericDataObject.php
r1249 r1272 43 43 44 44 /** 45 * Load contentclasses45 * Load required classes 46 46 */ 47 47 require_once ('classes/GenericObject.php'); 48 48 /** 49 49 * Any object that implement this interface can be administered in a generic way.
