Ticket #3732 (closed Bugs: fixed)

Opened 8 months ago

Last modified 8 months ago

IVR allows for invalid selection of the voicemail context zonemessages

Reported by: fskrotzki Assigned to:
Priority: minor Milestone: 2.6
Component: IVR Version: 2.5-branch
Keywords: IVR directory context selections Cc:
Confirmation: Confirmed SVN Revision (if applicable):
Backend Engine: All Backend Engine Version: 1.2 and 1.4

Description

If you have a voicemail.conf file with the context of zomemessages in it and it's in the following order: [general] [zonemessages] [default]

The IVR menu will default to the voicemail context of zonemessages for the directory service. zonemessages is a system context and should not be available for selection.

Change History

06/20/09 19:38:59 changed by fskrotzki

  • confirmation changed from Unreviewed to Confirmed.

It is a easy fix by editing the modules/ivr/page.ivr.php and changing line 209 from: if ($vmc != 'general') to if ($vmc != 'general') && ($vmc != 'zonemessages')

This will remove the selection of zonemessages from the drop down menu. The only other issue is if this bug has bitten you then you created the IVR and probably didn't notice the selection of zonemessages as the context and saved it as such so you'll need to go back into the IVR with the issue and change the context to default. This is important because if you apply the fix, it will show it as default but that's not what it will use to generate the code without selecting default and saving the change and applying it.

I'm updating the SVN in a minute...

06/20/09 19:53:21 changed by fskrotzki

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

(In [7854]) Fixes #3732 by removing the system context of zonemessages from the selection list

06/23/09 13:23:03 changed by p_lindheimer

(In [7866]) Merged revisions 7807-7858 via svnmerge from http://svn.freepbx.org/modules/branches/2.5

........

r7812 | mickecarlsson | 2009-06-10 14:39:39 -0700 (Wed, 10 Jun 2009) | 1 line

Closes #3713 adds Russian language to weakpasswords. Thank you ded

........

r7854 | fskrotzki | 2009-06-20 19:53:20 -0700 (Sat, 20 Jun 2009) | 1 line

Fixes #3732 by removing the system context of zonemessages from the selection list

........

r7858 | p_lindheimer | 2009-06-23 10:15:37 -0700 (Tue, 23 Jun 2009) | 1 line

fixes #3734 set FORWARD_CONTEXT before paging to block client side CF

........