Changeset 12862
- Timestamp:
- 10/20/11 14:02:21 (2 years ago)
- Files:
-
- modules/branches/2.10/backup/install.php (modified) (1 diff)
- modules/branches/2.10/backup/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.10/backup/install.php
r12513 r12862 232 232 //migrate pre 2.10 backups 233 233 if ($db->getOne('SELECT COUNT(*) FROM backup_templates') < 1) { 234 require_once(dirname(__FILE__) . '/functions.inc.php'); 234 // Don't know which of these it needs, but including functions.inc.php won't work when ugprading form earlier releases as the old version will 235 // already be there. 236 $dir = dirname(__FILE__); 237 require_once($dir . '/functions.inc/class.backup.php'); 238 require_once($dir . '/functions.inc/backup.php'); 239 require_once($dir . '/functions.inc/servers.php'); 240 require_once($dir . '/functions.inc/templates.php'); 241 require_once($dir . '/functions.inc/restore.php'); 242 235 243 //create default servers 236 244 $server['legacy'] = array( modules/branches/2.10/backup/module.xml
r12853 r12862 3 3 <repo>standard</repo> 4 4 <name>Backup & Restore</name> 5 <version>2.10.0. 1</version>5 <version>2.10.0.2</version> 6 6 <publisher>Schmoozecom.com</publisher> 7 7 <license>GPLv2+</license> … … 18 18 </depends> 19 19 <changelog> 20 *2.10.0.2* #5418 20 21 *2.10.0.1* don't make jquery.jstree.min.js dynamic it blocks caching 21 22 *2.10.0.0* Backup Module Rewrite
