Changeset 5729
- Timestamp:
- 03/10/08 18:07:02 (10 months ago)
- Files:
-
- modules/branches/2.3 (modified) (1 prop)
- modules/branches/2.3/infoservices/functions.inc.php (modified) (2 diffs)
- modules/branches/2.3/infoservices/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3
- Property svnmerge-integrated changed from /modules/branches/2.2:1-3588,3615-3635,3637-3638,3640,3674,3680,3686,3692,3702,3706,3710,3716,3758,3760,3762-3765,3767-3785,3787-3789,3801,3810,3828,3831,3839,3860,3866,3875,3877,3887,3899,3911,3913,3943,3982-3983,3990,3998,4007,4022-4023,4089,4092,4098,4265,4285 /modules/branches/2.4:1-5079,5090,5093,5097-5118,5120-5170,5172,5174,5176-5182,5184-5199,5202-5203,5205-5211,5239,5271-5272,5312,5383,5516,5544,5572,5606-5608,5615,5644,5651,5712-5713 to /modules/branches/2.2:1-3588,3615-3635,3637-3638,3640,3674,3680,3686,3692,3702,3706,3710,3716,3758,3760,3762-3765,3767-3785,3787-3789,3801,3810,3828,3831,3839,3860,3866,3875,3877,3887,3899,3911,3913,3943,3982-3983,3990,3998,4007,4022-4023,4089,4092,4098,4265,4285 /modules/branches/2.4:1-5079,5090,5093,5097-5118,5120-5170,5172,5174,5176-5182,5184-5199,5202-5203,5205-5211,5239,5271-5272,5312,5383,5516,5544,5572,5606-5608,5615,5644,5651,5712-5713,5727
modules/branches/2.3/infoservices/functions.inc.php
r4610 r5729 33 33 global $db; 34 34 35 $oxtn = $db->getOne("SELECT value from globals where variable='OPERATOR_XTN'"); //this needs to be here! 36 35 37 $id = "app-directory"; // The context to be included. This must be unique. 36 38 … … 40 42 $ext->add($id, $c, '', new ext_answer('')); 41 43 $ext->add($id, $c, '', new ext_wait('1')); // $cmd,1,Wait(1) 42 $ext->add($id, $c, '', new ext_agi('directory,${DIR-CONTEXT},from-did-direct,${DIRECTORY:0:1}${DIRECTORY_OPTS}'.( !empty($oxtn) ? 'o' : '') )); // AGI44 $ext->add($id, $c, '', new ext_agi('directory,${DIR-CONTEXT},from-did-direct,${DIRECTORY:0:1}${DIRECTORY_OPTS}'.($oxtn != '' ? 'o' : '') )); 43 45 $ext->add($id, $c, '', new ext_playback('vm-goodbye')); // $cmd,n,Playback(vm-goodbye) 44 46 $ext->add($id, $c, '', new ext_hangup('')); // hangup 45 $oxtn = $db->getOne("SELECT value from globals where variable='OPERATOR_XTN'");46 47 if ($oxtn != '') { 47 48 $ext->add($id, 'o', '', new ext_goto('from-internal,${OPERATOR_XTN},1')); modules/branches/2.3/infoservices/module.xml
r4934 r5729 2 2 <rawname>infoservices</rawname> 3 3 <name>Info Services</name> 4 <version>1.3.5. 1</version>4 <version>1.3.5.3</version> 5 5 <candisable>no</candisable> 6 6 <canuninstall>no</canuninstall> … … 9 9 <description>Provides a number of applications accessable by feature codes: company directory, call trace (last call information), echo test, speaking clock, and speak current extension number.</description> 10 10 <changelog> 11 *1.3.5.3* #2731 fix press 0 for operator in directory 11 12 *1.3.5.2* changed categories 12 13 *1.3.5.1* bump for rc1
