Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
2a9b312b
Commit
2a9b312b
authored
Aug 12, 2016
by
Ad Schellevis
Committed by
GitHub
Aug 12, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1127 from pv2b/uimodelgrid-itemsperpage-default
(Base) Default to inf rows not 9999
parents
74a8a4f0
53fe7bc4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
UIModelGrid.php
src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php
+1
-1
No files found.
src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php
View file @
2a9b312b
...
...
@@ -58,7 +58,7 @@ class UIModelGrid
*/
public
function
fetchBindRequest
(
$request
,
$fields
,
$defaultSort
=
null
)
{
$itemsPerPage
=
$request
->
get
(
'rowCount'
,
'int'
,
9999
);
$itemsPerPage
=
$request
->
get
(
'rowCount'
,
'int'
,
-
1
);
$currentPage
=
$request
->
get
(
'current'
,
'int'
,
1
);
$sortBy
=
array
(
$defaultSort
);
$sortDescending
=
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment