Skip to content

Commit 78f8b8d

Browse files
committed
🐛 tracking should have no limit because of field
1 parent acd4918 commit 78f8b8d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Kirby 3 Section to display recently modified content pages",
44
"license": "MIT",
55
"type": "kirby-plugin",
6-
"version": "1.2.1",
6+
"version": "1.2.2",
77
"authors": [
88
{
99
"name": "Bruno Meilick",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
unset($list[$listKey]);
9292
}
9393
arsort($list);
94-
$list = array_slice($list, 0, intval(option('bnomei.recently-modified.limit')));
94+
// NOTE: do not limit list or field will not work beyond the limit
95+
// $list = array_slice($list, 0, intval(option('bnomei.recently-modified.limit')));
9596
kirby()->cache('bnomei.recently-modified')->set($cacheKey, $list);
9697
return true;
9798
},

vendor/composer/installed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php return array(
22
'root' => array(
3-
'pretty_version' => '1.2.1',
4-
'version' => '1.2.1.0',
3+
'pretty_version' => '1.2.2',
4+
'version' => '1.2.2.0',
55
'type' => 'kirby-plugin',
66
'install_path' => __DIR__ . '/../../',
77
'aliases' => array(),
@@ -11,8 +11,8 @@
1111
),
1212
'versions' => array(
1313
'bnomei/kirby3-recently-modified' => array(
14-
'pretty_version' => '1.2.1',
15-
'version' => '1.2.1.0',
14+
'pretty_version' => '1.2.2',
15+
'version' => '1.2.2.0',
1616
'type' => 'kirby-plugin',
1717
'install_path' => __DIR__ . '/../../',
1818
'aliases' => array(),

0 commit comments

Comments
 (0)