Skip to content

Commit

Permalink
Merge pull request #8407 from jasonliang-dev/develop
Browse files Browse the repository at this point in the history
fix: typo in pager default_simple
  • Loading branch information
samsonasik authored Jan 7, 2024
2 parents 2aab393 + 495fb0c commit bbd4f1b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions phpstan-baseline.php
Original file line number Diff line number Diff line change
Expand Up @@ -2491,11 +2491,6 @@
'count' => 1,
'path' => __DIR__ . '/system/Pager/Pager.php',
];
$ignoreErrors[] = [
'message' => '#^Call to method CodeIgniter\\\\Pager\\\\PagerRenderer\\:\\:getNext\\(\\) with incorrect case\\: getnext$#',
'count' => 1,
'path' => __DIR__ . '/system/Pager/Views/default_simple.php',
];
$ignoreErrors[] = [
'message' => '#^Argument \\#1 \\$name \\(class\\-string\\) passed to function model does not extend CodeIgniter\\\\\\\\Model\\.$#',
'count' => 1,
Expand Down
2 changes: 1 addition & 1 deletion system/Pager/Views/default_simple.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</a>
</li>
<li <?= $pager->hasNext() ? '' : 'class="disabled"' ?>>
<a href="<?= $pager->getnext() ?? '#' ?>" aria-label="<?= lang('Pager.next') ?>">
<a href="<?= $pager->getNext() ?? '#' ?>" aria-label="<?= lang('Pager.next') ?>">
<span aria-hidden="true"><?= lang('Pager.older') ?></span>
</a>
</li>
Expand Down

0 comments on commit bbd4f1b

Please sign in to comment.