Changeset 6596
- Timestamp:
- 09/07/08 17:41:50 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/asteriskinfo/page.asteriskinfo.php
r6594 r6596 37 37 $iax2registry = _("IAX2 Registry"); 38 38 $subscribenotify = _("Subscribe/Notify"); 39 $zapteldriverinfo = _("Zaptel driver info");40 39 if ($chan_dahdi){ 41 40 $zapteldriverinfo = _("DAHDI driver info"); 41 } else { 42 $zapteldriverinfo = _("Zaptel driver info"); 42 43 } 43 44 $conferenceinfo = _("Conference Info"); … … 114 115 } 115 116 117 if ($chan_dahdi){ 118 $arr_all[$zapteldriverinfo]="dahdi show channels"; 119 } 116 120 if ($chan_dahdi){ 117 121 $arr_all[$zapteldriverinfo]="dahdi show channels"; modules/branches/2.5/core/agi-bin/dialparties.agi
r6594 r6596 736 736 $dds = $agi->database_get('DEVICE',$adevice.'/dial'); 737 737 if ($chan_dahdi) { 738 $dialstring .= str_replace('ZAP ', 'DAHDI', $dds['data']);738 $dialstring .= str_replace('ZAP/', 'DAHDI/', $dds['data']); 739 739 } else { 740 740 $dialstring .= $dds['data'];
