Update to Kirby 3.7.5

This commit is contained in:
Nico Hoffmann
2022-08-30 20:43:20 +02:00
parent d89a0a647c
commit 26541380c4
45 changed files with 191 additions and 199 deletions

View File

@@ -81,7 +81,6 @@ class Pagination
*/
return $a;
} elseif (is_array($a) === true) {
/**
* First argument is an option array
*
@@ -89,7 +88,6 @@ class Pagination
*/
$params = $a;
} elseif (is_int($a) === true && $b === null) {
/**
* First argument is the limit
*
@@ -97,7 +95,6 @@ class Pagination
*/
$params['limit'] = $a;
} elseif (is_int($a) === true && is_int($b) === true) {
/**
* First argument is the limit,
* second argument is the page
@@ -107,7 +104,6 @@ class Pagination
$params['limit'] = $a;
$params['page'] = $b;
} elseif (is_int($a) === true && is_array($b) === true) {
/**
* First argument is the limit,
* second argument are options