Ticket #3383 (closed Bugs: fixed)

Opened 2 months ago

Last modified 1 month ago

ARI Header Fix for non default folder (INBOX)

Reported by: speedy Assigned to: sasargen
Priority: minor Milestone: 2.6
Component: ARI Version: 2.5-branch
Keywords: Cc:
Confirmation: Unreviewed SVN Revision (if applicable):
Backend Engine: All Backend Engine Version:

Description

In callmonitor.module (line 209) and voicemail.module (line 399) $recording_header does not preserve the current folder or start position.

Currently, when clicking one of the header links in a folder other than the INBOX, you are taken back to the INBOX.

Here is an updated line that includes these variables:

$recording_header .= "<th><a href=" . $_SESSIONARI_ROOT? . "?m=" . $m . "&f=" . $f . "&q=" . $unicode_q . "&folder=" . $folder . "&start=" . $start . "&order=" . $field . "&sort=" . $currentSort . ">" . $text . $arrowImg . "</a></th>";

Change History

12/01/08 05:55:37 changed by sasargen

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

(In [7305]) closes #3383, changing sort with recording header maintains current folder, no longer returns to the INBOX

12/01/08 06:02:53 changed by sasargen

speedy, thanks for the fix. Since the start position of the old sort order has no relation to the start position of the new sort order, it is more consistent to place the user at the beginning of the new sort order. Therefore, I didn't include the code to maintain the start position when the sort is changed.