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:
parent
99c46af6bc
commit
466e1dfd6d
|
|
@ -278,7 +278,7 @@
|
|||
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
|
||||
echo " <tr>\n";
|
||||
echo " <td width='33.3%' nowrap='nowrap'> </td>\n";
|
||||
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
|
||||
echo " <td width='33.3%' align='center' nowrap='nowrap'> </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
|
||||
|
|
|
|||
Loading…
Reference in New Issue