Changeset 8389
- Timestamp:
- 09/10/09 13:41:56 (4 years ago)
- Files:
-
- modules/branches/2.6/core/functions.inc.php (modified) (3 diffs)
- modules/branches/2.6/core/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.6/core/functions.inc.php
r8355 r8389 2650 2650 global $astman; 2651 2651 global $db; 2652 2653 if ($tech == '' || trim($tech) == 'virtual') { 2654 return true; 2655 } 2652 2656 2653 2657 $display = isset($_REQUEST['display'])?$_REQUEST['display']:''; … … 2778 2782 global $currentFile; 2779 2783 global $astman; 2780 2784 2781 2785 //get all info about device 2782 2786 $devinfo = core_devices_get($account); 2783 2787 if (empty($devinfo)) { 2788 return true; 2789 } 2790 2784 2791 //delete details to astdb 2785 2792 if ($astman) { … … 5391 5398 5392 5399 //create vars from the request 5400 $tech = $action = null; 5393 5401 extract($_REQUEST); 5394 5402 5395 if (!$_REQUEST['tech'] || $tech == "virtual"){return true;} 5396 5403 if ($tech == "virtual" || $action == "edit" && $tech == '') { 5404 return true; 5405 } 5397 5406 $extension = isset($extension)?$extension:null; 5398 5407 $deviceid = isset($deviceid)?$deviceid:null; modules/branches/2.6/core/module.xml
r8358 r8389 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.6.0RC2. 0</version>6 <version>2.6.0RC2.1</version> 7 7 <publisher>FreePBX</publisher> 8 8 <license>GPLv2+</license> … … 10 10 <canuninstall>no</canuninstall> 11 11 <changelog> 12 *2.6.0RC2.1* #3886, #3885, #3875 revisited 12 13 *2.6.0RC2.0* #3854, #3872, #3871, #3877 13 14 *2.6.0RC1.1* #3751
