Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Fix to bugreport #741
Browse files Browse the repository at this point in the history
Some config variables in the job details job log datatable
initialization were missing.

Fixes #741: pagination ini setting not working for job details
  • Loading branch information
fbergkemper committed Dec 21, 2016
1 parent 57e1289 commit b3a448d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion module/Job/view/job/job/details.phtml
Expand Up @@ -274,7 +274,9 @@ $(document).ready(function() {
"ordering": true,
"info": true,
"pagingType": "full_numbers",
"stateSave": true,
"lengthMenu": [ <?php echo $_SESSION['bareos']['dt_lengthmenu']; ?> ],
"pageLength": <?php echo $_SESSION['bareos']['dt_pagelength']; ?>,
"stateSave": <?php echo $_SESSION['bareos']['dt_statesave']; ?>,
"order": [[0, 'desc']],
"columnDefs": [
{
Expand Down

0 comments on commit b3a448d

Please sign in to comment.