Changeset 4587
- Timestamp:
- 07/28/07 00:04:57 (1 year ago)
- Files:
-
- modules/branches/2.3/pinsets/module.xml (modified) (1 diff)
- modules/branches/2.3/pinsets/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3/pinsets/module.xml
r4242 r4587 2 2 <rawname>pinsets</rawname> 3 3 <name>PIN Sets</name> 4 <version>1.2 </version>4 <version>1.2.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.2.1* #1770 added proper uninstall 9 10 *1.2* Add SQLite3 support, fixes http://freepbx.org/trac/ticket/1778 10 11 *1.1* Add he_IL translation, add naftali5's fixes where pinsets were being lost when moved around. modules/branches/2.3/pinsets/uninstall.php
r4241 r4587 1 1 <?php 2 2 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.."; 3 14 sql('DROP TABLE IF EXISTS `pinsets`'); 15 echo "done<br>\n"; 16 4 17 5 18 ?>
