Paging Controls Fix (#4048)

* Paging Controls Fix

Bug where you couldn't enter a page number and press ENTER to jump to that page.

* Update call_recordings.php
This commit is contained in:
konradSC 2019-04-27 11:47:44 -04:00 committed by FusionPBX
parent 99c46af6bc
commit 466e1dfd6d
1 changed files with 7 additions and 1 deletions

View File

@ -278,7 +278,7 @@
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
echo " <tr>\n";
echo " <td width='33.3%' nowrap='nowrap'>&nbsp;</td>\n";
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
echo " <td width='33.3%' align='center' nowrap='nowrap'>&nbsp;</td>\n";
echo " <td class='list_control_icons'>";
if (permission_exists('call_recording_add')) {
echo "<a href='call_recording_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
@ -293,6 +293,12 @@
echo "</tr>\n";
echo "</table>";
echo "</form>\n";
if (strlen($paging_controls) > 0) {
echo "<br />";
echo $paging_controls."\n";
}
echo "<br /><br />";
//include the footer