|
@@ -23,7 +23,7 @@ |
|
|
block discarded – undo |
|
23
|
23
|
$first = ( $offset > 0 ? 0 : null ); |
|
24
|
24
|
$prev = ( $offset - $limit >= 0 ? $offset - $limit : null ); |
|
25
|
25
|
$next = ( $offset + $limit < $total ? $offset + $limit : null ); |
|
26
|
|
-$last = ( ((int) ($total / $limit)) * $limit > $offset ? ((int) ($total / $limit)) * $limit : null ); |
|
|
26
|
+$last = ( ( (int) ( $total / $limit ) ) * $limit > $offset ? ( (int) ( $total / $limit ) ) * $limit : null ); |
|
27
|
27
|
|
|
28
|
28
|
|
|
29
|
29
|
$ref = array( 'resource', 'id', 'related', 'relatedid', 'filter', 'page', 'sort', 'include', 'fields' ); |
Please login to merge, or discard this patch.