Changeset 5601
- Timestamp:
- 01/16/08 01:21:00 (5 years ago)
- Files:
-
- modules/branches/2.4/vmblast/module.xml (modified) (2 diffs)
- modules/branches/2.4/vmblast/page.vmblast.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4/vmblast/module.xml
r5598 r5601 2 2 <rawname>vmblast</rawname> 3 3 <name>VoiceMail Blasting</name> 4 <version>2.4. 2</version>4 <version>2.4.3</version> 5 5 <type>setup</type> 6 6 <category>Internal Options & Configuration</category> … … 9 9 </description> 10 10 <changelog> 11 *2.4.3* #2632 audio_lable, password, default_group not saved on initial config, and fix odd refresh behavior after add 11 12 *2.4.2* #2630 fixed errors requiring register_globals=on to be set in php.ini 12 13 *2.4.1* add beep only, no confirmation option to vmblast audio label modules/branches/2.4/vmblast/page.vmblast.php
r5597 r5601 15 15 16 16 //the extension we are currently displaying 17 $extdisplay = isset($_REQUEST['extdisplay']) ? $_REQUEST['extdisplay'] : '';18 17 $account = isset($_REQUEST['account']) ? $_REQUEST['account'] : ''; 18 $extdisplay = isset($_REQUEST['extdisplay']) ? $_REQUEST['extdisplay'] : (($account != '')?'GRP-'.$account:''); 19 19 $description = isset($_REQUEST['description']) ? $_REQUEST['description'] : ''; 20 20 $audio_label = isset($_REQUEST['audio_label']) ? $_REQUEST['audio_label'] : -1; … … 36 36 if (!empty($usage_arr)) { 37 37 $conflict_url = framework_display_extension_usage_alert($usage_arr); 38 39 } else if (vmblast_add($account,$vmblast_list,$description)) {38 } else if (vmblast_add($account,$vmblast_list,$description,$audio_label,$password,$default_group)) { 39 $_REQUEST['action'] = 'delGRP'; 40 40 needreload(); 41 redirect_standard( );41 redirect_standard('extdisplay'); 42 42 } 43 43 }
