Ticket #5034 (closed Bugs: fixed)

Opened 2 years ago

Last modified 2 years ago

Bug if you click Click here to hang up while listen to voicemail message in freepbx ARI in asterisk 1.6

Reported by: philippebolduc Assigned to:
Priority: minor Milestone: 2.9
Component: ARI Version: 2.8-branch
Keywords: Cc:
Confirmation: Need Feedback Distro:
Backend Engine: All Distro Ver:
Backend Ver: SVN Revision (if applicable):

Description (Last modified by p_lindheimer)

using freepbx 2.8

The pattern in callme_hangup function is not correct

Before

$chan_pat = '/[\s]*Local\/' . preg_quote(trim($exten)) . '@from\-internal\-[a-zA-Z0-9]*,(1|2)[\s]*/';

Change

$chan_pat = '/[\s]*Local\/' . preg_quote(trim($exten)) . '@from\-internal\-[a-zA-Z0-9]*;(1|2)[\s]*/';

The current version is correct for asterisk 1.4

Change History

03/31/11 12:53:10 changed by p_lindheimer

  • confirmation changed from Unreviewed to Need Feedback.
  • description changed.

If you use the following, does it also fix it for you:

$chan_pat = '/[\s]*Local\/' . preg_quote(trim($exten)) . '@from\-internal\-[a-zA-Z0-9]*(,|;)(1|2)[\s]*/';

04/07/11 18:56:23 changed by p_lindheimer

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

(In [11974]) fixes #5034 though need confirmation from reporter, can re-open if still an issue