We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc3358e commit bfdaaf1Copy full SHA for bfdaaf1
classes/Feed.php
@@ -54,7 +54,7 @@ public static function feed($pages, $options = [], $force = null)
54
foreach ($pages as $p) {
55
$key[] = $p->modified();
56
}
57
- $key = md5(\implode(',', $key));
+ $key = md5(kirby()->language()->code() . '_' . \implode(',', $key));
58
$response = $force ? null : static::cache()->get($key);
59
if (!$response) {
60
$snippet = \Kirby\Toolkit\A::get($options, 'snippet', 'feed/rss');
0 commit comments