diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-05 21:08:41 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-05 21:10:40 -0400 |
commit | f52f395437a946478da2a126015c05e3e0afdc1f (patch) | |
tree | f98f451642691cc9d6aef6a0a7e524347eb7c72e /templates/renamesummary.tmpl | |
parent | 11937595687df86aa93502d2e895f747a6262c4c (diff) | |
download | ikiwiki-f52f395437a946478da2a126015c05e3e0afdc1f.tar ikiwiki-f52f395437a946478da2a126015c05e3e0afdc1f.tar.gz |
consistently drop NAME= in templates
also add template syntax smoke test
Diffstat (limited to 'templates/renamesummary.tmpl')
-rw-r--r-- | templates/renamesummary.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/renamesummary.tmpl b/templates/renamesummary.tmpl index 60f81b35b..7a8dc9229 100644 --- a/templates/renamesummary.tmpl +++ b/templates/renamesummary.tmpl @@ -11,14 +11,14 @@ <TMPL_IF FIXEDLINKS> The following pages have been automatically modified to update their links to <TMPL_VAR DEST>: <ul> -<TMPL_LOOP NAME=FIXEDLINKS><li><TMPL_VAR PAGE></li></TMPL_LOOP> +<TMPL_LOOP FIXEDLINKS><li><TMPL_VAR PAGE></li></TMPL_LOOP> </ul> </TMPL_IF> <TMPL_IF BROKENLINKS_CHECKED> <TMPL_IF BROKENLINKS> The following pages still link to <TMPL_VAR SRC>: <ul> -<TMPL_LOOP NAME=BROKENLINKS><li><TMPL_VAR PAGE></li></TMPL_LOOP> +<TMPL_LOOP BROKENLINKS><li><TMPL_VAR PAGE></li></TMPL_LOOP> </ul> </TMPL_IF> </TMPL_IF> |