Changeset 5897
- Timestamp:
- 07/03/08 23:06:03 (5 months ago)
- Files:
-
- modules/branches/2.5/dictate/functions.inc.php (modified) (1 diff)
- modules/branches/2.5/languages/functions.inc.php (modified) (1 diff)
- modules/branches/2.5/paging/functions.inc.php (modified) (1 diff)
- modules/branches/2.5/vmblast/functions.inc.php (modified) (1 diff)
- modules/branches/2.5/voicemail/functions.inc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/dictate/functions.inc.php
r5365 r5897 152 152 } 153 153 if ($action == "add" || $action == "edit") { 154 if (!isset($ GLOBALS['abort']) || $GLOBALS['abort'] !== true) {154 if (!isset($_GLOBALS['abort']) || $_GLOBALS['abort'] !== true) { 155 155 dictate_update($extdisplay, $dictenabled, $dictformat, $dictemail); 156 156 } modules/branches/2.5/languages/functions.inc.php
r5746 r5897 168 168 } 169 169 if ($action == "add" || $action == "edit") { 170 if (!isset($ GLOBALS['abort']) || $GLOBALS['abort'] !== true) {170 if (!isset($_GLOBALS['abort']) || $_GLOBALS['abort'] !== true) { 171 171 languages_user_update($extdisplay, $langcode); 172 172 } modules/branches/2.5/paging/functions.inc.php
r5383 r5897 554 554 555 555 if ($action == "add" || $action == "edit") { 556 if (!isset($ GLOBALS['abort']) || $GLOBALS['abort'] !== true) {556 if (!isset($_GLOBALS['abort']) || $_GLOBALS['abort'] !== true) { 557 557 if ($in_default_page_grp !== false) { 558 558 paging_set_default($extdisplay, $in_default_page_grp); modules/branches/2.5/vmblast/functions.inc.php
r5603 r5897 298 298 299 299 if (($action == "add" || $action == "edit") && $vm_enabled) { 300 if (!isset($ GLOBALS['abort']) || $GLOBALS['abort'] !== true) {300 if (!isset($_GLOBALS['abort']) || $_GLOBALS['abort'] !== true) { 301 301 if ($in_default_vmblast_grp !== false) { 302 302 vmblast_set_default($extdisplay, $in_default_vmblast_grp); modules/branches/2.5/voicemail/functions.inc.php
r5658 r5897 236 236 switch ($action) { 237 237 case "add": 238 if (!isset($ GLOBALS['abort']) || $GLOBALS['abort'] !== true) {238 if (!isset($_GLOBALS['abort']) || $_GLOBALS['abort'] !== true) { 239 239 $usage_arr = framework_check_extension_usage($_REQUEST['extension']); 240 240 if (!empty($usage_arr)) { 241 $ GLOBALS['abort'] = true;241 $_GLOBALS['abort'] = true; 242 242 } else { 243 243 voicemail_mailbox_add($extdisplay, $_REQUEST); … … 254 254 break; 255 255 case "edit": 256 if (!isset($ GLOBALS['abort']) || $GLOBALS['abort'] !== true) {256 if (!isset($_GLOBALS['abort']) || $_GLOBALS['abort'] !== true) { 257 257 voicemail_mailbox_del($extdisplay); 258 258 if ( $vm != 'disabled' )
