Ticket #5300 (closed Bugs: fixed)

Opened 2 years ago

Last modified 1 year ago

Call Tracing Not Working

Reported by: bbeimer Assigned to: p_lindheimer
Priority: minor Milestone: 2.10
Component: Core Version: 2.9-branch
Keywords: CALLTRACE Cc:
Confirmation: Unreviewed Distro:
Backend Engine: All Distro Ver:
Backend Ver: SVN Revision (if applicable):

Description

Call tracing does not work in 2.9 - appears to be an issue in module freepbx/admin/modules/core/functions.inc.php line 3594

Line reads:

        $ext->add($mcontext,$exten,'', new ext_gotoif('$["${DEXTEN:-1}"!="#"]','skiptrace'));

should read:

        $ext->add($mcontext,$exten,'', new ext_gotoif('$["${DEXTEN:-1}"="#"]','skiptrace'));

With that change, call tracing works again.

Change History

(in reply to: ↑ description ) 02/14/12 14:12:32 changed by arpagon

Replying to bbeimer:

Call tracing does not work in 2.9 - appears to be an issue in module freepbx/admin/modules/core/functions.inc.php line 3594 Line reads: {{{ $ext->add($mcontext,$exten,, new ext_gotoif('$["${DEXTEN:-1}"!="#"]','skiptrace')); }}} should read: {{{ $ext->add($mcontext,$exten,, new ext_gotoif('$["${DEXTEN:-1}"="#"]','skiptrace')); }}} With that change, call tracing works again.

I comfirm this problem, in freepbx version 2.8.04

02/16/12 15:03:27 changed by p_lindheimer

  • status changed from new to closed.
  • resolution set to fixed.

(In [13450]) fixes #5300 for call trace, thanks bbeimer and arpagon

02/16/12 15:05:16 changed by p_lindheimer

(In [13451]) Merged revisions 13450 via svnmerge from http://www.freepbx.org/v2/svn/modules/branches/2.10

........

r13450 | p_lindheimer | 2012-02-16 12:03:27 -0800 (Thu, 16 Feb 2012) | 1 line

fixes #5300 for call trace, thanks bbeimer and arpagon

........