- Timestamp:
- 10/18/11 18:35:14 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.9/endpointman/functions.inc.php
r12769 r12826 52 52 $tech = isset($_REQUEST['tech_hardware'])?$_REQUEST['tech_hardware']:null; 53 53 54 55 if((($display == "extensions") OR ($display == "devices")) && (isset($extdisplay) OR ($tech == "sip_generic"))) { 54 if((($display == "extensions") OR ($display == "devices")) && (isset($extdisplay) OR ($tech == "sip_generic"))) { 56 55 global $endpoint; 57 56 … … 181 180 $extdisplay = isset($_REQUEST['extdisplay'])?$_REQUEST['extdisplay']:null; 182 181 $tech = isset($_REQUEST['tech_hardware']) ? $_REQUEST['tech_hardware'] : null; 183 184 dbug($_REQUEST); 185 186 if((isset($tech)) && ($tech == 'sip_generic')) { 182 $tech = isset($tech) ? $tech : $_REQUEST['tech']; 183 184 if((isset($tech)) && (($tech == 'sip_generic') OR ($tech == 'sip'))) { 187 185 // Don't display this stuff it it's on a 'This xtn has been deleted' page. 188 186 if ($action != 'del') {
