Changeset 5328 for modules/branches/2.4/languages/uninstall.php
- Timestamp:
- 12/02/07 00:53:34 (6 years ago)
- Files:
-
- modules/branches/2.4/languages (copied) (copied from modules/branches/2.4/miscapps)
- modules/branches/2.4/languages/uninstall.php (copied) (copied from modules/branches/2.4/miscapps/uninstall.php) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4/languages/uninstall.php
r4583 r5328 2 2 3 3 global $db; 4 global $amp_conf;5 4 6 $miscapps_arr = miscapps_list(); 7 foreach ($miscapps_arr as $item) { 8 echo "removing ".$item['description'].".."; 9 miscapps_delete($item['miscapps_id']); 10 echo "done<br>\n"; 11 } 12 13 echo "dropping table miscapps.."; 14 sql("DROP TABLE IF EXISTS `miscapps`"); 5 echo "dropping table languages.."; 6 sql("DROP TABLE IF EXISTS `languages`"); 15 7 echo "done<br>\n"; 16 8
