diff options
author | VirtualTam <virtualtam@flibidi.net> | 2016-10-16 17:41:08 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2016-10-16 17:41:08 +0200 |
commit | dec5fe9c6973054a1301982f910de86a19502b55 (patch) | |
tree | b78d43b5692ee6d80ea4e1bb4ac5345c22b880a6 /tpl/feed.atom.html | |
parent | bb70e690598d270951148e003a4dc253b05868b4 (diff) | |
download | Shaarli-dec5fe9c6973054a1301982f910de86a19502b55.tar.gz Shaarli-dec5fe9c6973054a1301982f910de86a19502b55.tar.zst Shaarli-dec5fe9c6973054a1301982f910de86a19502b55.zip |
Cleanup: explicitely loop over PHP variables in templates
Relates to https://github.com/shaarli/Shaarli/issues/613
Before: {loop="someVariable"}
After: {loop="$someVariable"}
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tpl/feed.atom.html')
-rw-r--r-- | tpl/feed.atom.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/feed.atom.html b/tpl/feed.atom.html index 1932f507..40fd421a 100644 --- a/tpl/feed.atom.html +++ b/tpl/feed.atom.html | |||
@@ -17,7 +17,7 @@ | |||
17 | </author> | 17 | </author> |
18 | <id>{$index_url}</id> | 18 | <id>{$index_url}</id> |
19 | <generator>Shaarli</generator> | 19 | <generator>Shaarli</generator> |
20 | {loop="links"} | 20 | {loop="$links"} |
21 | <entry> | 21 | <entry> |
22 | <title>{$value.title}</title> | 22 | <title>{$value.title}</title> |
23 | {if="$usepermalinks"} | 23 | {if="$usepermalinks"} |