Changeset 4588 for modules/branches/2.2
- Timestamp:
- 07/28/07 03:08:18 (6 years ago)
- Files:
-
- modules/branches/2.2 (modified) (1 prop)
- modules/branches/2.2/pinsets/module.xml (modified) (1 diff)
- modules/branches/2.2/pinsets/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.2
- Property svnmerge-integrated changed from /modules/branches/2.1:1-2166,2289,2414,2419,2424,2430,2449,2458,2462,2476 /modules/branches/2.3:1-3256,4102,4227,4232,4251,4312,4390,4570,4574,4579,4583 to /modules/branches/2.1:1-2166,2289,2414,2419,2424,2430,2449,2458,2462,2476 /modules/branches/2.3:1-3256,4102,4227,4232,4251,4312,4390,4570,4574,4579,4583,4587
modules/branches/2.2/pinsets/module.xml
r3509 r4588 2 2 <rawname>pinsets</rawname> 3 3 <name>PIN Sets</name> 4 <version>1.1 </version>4 <version>1.1.1</version> 5 5 <type>setup</type> 6 6 <category>Internal Options & Configuration</category> 7 7 <description>Allow creation of lists of PINs (numbers for passwords) that can be used by other modules (eg, trunks).</description> 8 8 <changelog> 9 *1.1.1* #1770 added proper uninstall 9 10 *1.1* Add naftali5's fix for pinsets being lost when routes are moved. 10 11 *1.0.12* Add he_IL translation modules/branches/2.2/pinsets/uninstall.php
r1760 r4588 1 1 <?php 2 2 3 sql('DROP TABLE pinsets'); 3 global $db; 4 global $amp_conf; 5 6 $pinsets = pinsets_list(); 7 foreach ($pinsets as $item) { 8 echo "removing ".$item['description'].".."; 9 pinsets_del($item['pinsets_id']); 10 echo "done<br>\n"; 11 } 12 13 echo "dropping table pinsets.."; 14 sql('DROP TABLE IF EXISTS `pinsets`'); 15 echo "done<br>\n"; 16 4 17 5 18 ?>
