Changeset 9112
- Timestamp:
- 03/10/10 12:55:59 (3 years ago)
- Files:
-
- modules/branches/2.7 (modified) (1 prop)
- modules/branches/2.7/queues/module.xml (modified) (2 diffs)
- modules/branches/2.7/queues/page.queues.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.7
- Property svnmerge-integrated changed from /modules/branches/2.6:1-8497,8589,8613,8620,8651,8672 /modules/branches/2.8:1-9044 to /modules/branches/2.6:1-8497,8589,8613,8620,8651,8672 /modules/branches/2.8:1-9044,9107
modules/branches/2.7/queues/module.xml
r8977 r9112 2 2 <rawname>queues</rawname> 3 3 <name>Queues</name> 4 <version>2.7.0. 0</version>4 <version>2.7.0.1</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> … … 11 11 </description> 12 12 <changelog> 13 *2.7.0.1* #4120, spelling typo 13 14 *2.7.0.0* #4084, spelling, tooltips changes, localizations 14 15 *2.7.0beta1.5* #4084, #4068 (support for experimental dial-one) modules/branches/2.7/queues/page.queues.php
r9105 r9112 189 189 switch ($matches[1]) { 190 190 case 'Agent': 191 $ prefix = 'A';191 $exten_prefix = 'A'; 192 192 break; 193 193 case 'SIP': 194 $ prefix = 'S';194 $exten_prefix = 'S'; 195 195 break; 196 196 case 'IAX2': 197 $ prefix = 'X';197 $exten_prefix = 'X'; 198 198 break; 199 199 case 'ZAP': 200 $ prefix = 'Z';200 $exten_prefix = 'Z'; 201 201 break; 202 202 case 'DAHDI': 203 $ prefix = 'D';203 $exten_prefix = 'D'; 204 204 break; 205 205 case 'Local': 206 $ prefix = '';206 $exten_prefix = ''; 207 207 break; 208 208 } 209 $mem_array[] = $ prefix.$matches[2].','.$matches[3];209 $mem_array[] = $_exten_prefix.$matches[2].','.$matches[3]; 210 210 } 211 211 }
