Changeset 8168
- Timestamp:
- 08/25/09 20:47:56 (2 years ago)
- Files:
-
- modules/branches/2.6/pbdirectory/agi-bin/pbdirectory (modified) (1 diff)
- modules/branches/2.6/pbdirectory/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.6/pbdirectory/agi-bin/pbdirectory
r4985 r8168 91 91 $list = $astman->database_show(); 92 92 foreach ($list as $k => $v) { 93 if (substr($k, 1, 7) == 'cidname') 94 $numbers[substr($k, 9)] = $v ; 93 if (strstr($k, 'cidname')) { 94 $split = explode("/",$k); 95 $ext = $split[2]; 96 $numbers[$ext] = $v; 97 } 95 98 } 96 99 modules/branches/2.6/pbdirectory/module.xml
r7943 r8168 2 2 <rawname>pbdirectory</rawname> 3 3 <name>Phonebook Directory</name> 4 <version>2.6.0. 0</version>4 <version>2.6.0.1</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> … … 10 10 <description>Provides a dial-by-name directory for phonebook entries</description> 11 11 <changelog> 12 *2.6.0.1* #3468 12 13 *2.6.0.0* localizations, misc 13 14 *2.5.0* localization string enclosures
