diff options
author | VirtualTam <virtualtam+github@flibidi.net> | 2016-10-17 10:20:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 10:20:50 +0200 |
commit | 209aa96e7e32d810db30d2eb437cef2280c5cad6 (patch) | |
tree | d7bde9c9a66fd2049b4ddb7b02f3c7351504166b /tpl/feed.rss.html | |
parent | 06eec9bf764662cd328627247a1f43e4abd3c5ad (diff) | |
parent | dec5fe9c6973054a1301982f910de86a19502b55 (diff) | |
download | Shaarli-209aa96e7e32d810db30d2eb437cef2280c5cad6.tar.gz Shaarli-209aa96e7e32d810db30d2eb437cef2280c5cad6.tar.zst Shaarli-209aa96e7e32d810db30d2eb437cef2280c5cad6.zip |
Merge pull request #660 from virtualtam/fix/template/loop
Cleanup: explicitely loop over PHP variables in templates
Diffstat (limited to 'tpl/feed.rss.html')
-rw-r--r-- | tpl/feed.rss.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/feed.rss.html b/tpl/feed.rss.html index 4bfe4196..e18dbf9b 100644 --- a/tpl/feed.rss.html +++ b/tpl/feed.rss.html | |||
@@ -12,7 +12,7 @@ | |||
12 | <!-- PubSubHubbub Discovery --> | 12 | <!-- PubSubHubbub Discovery --> |
13 | <atom:link rel="hub" href="{$pubsubhub_url}" /> | 13 | <atom:link rel="hub" href="{$pubsubhub_url}" /> |
14 | {/if} | 14 | {/if} |
15 | {loop="links"} | 15 | {loop="$links"} |
16 | <item> | 16 | <item> |
17 | <title>{$value.title}</title> | 17 | <title>{$value.title}</title> |
18 | <guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid> | 18 | <guid isPermaLink="{if="$usepermalinks"}true{else}false{/if}">{$value.guid}</guid> |