diff options
author | rub <rub@piwigo.org> | 2010-12-29 14:26:02 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2010-12-29 14:26:02 +0000 |
commit | 1a9880e6976d849e312729905f15cf14c286bdaf (patch) | |
tree | 8aa9092a09b1a9ff36655ab2ac2fa81de45b87b1 | |
parent | bc0100f9e8263d048236e68f28026532e8aeb65f (diff) |
merge -c8373 from branch 2.1 to trunk
Add a new way to add informations on about page. (Loop on template)
Add element on ignore list
git-svn-id: http://piwigo.org/svn/trunk@8374 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | themes/default/template/about.tpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/themes/default/template/about.tpl b/themes/default/template/about.tpl index eca44dbed..2ce658c44 100644 --- a/themes/default/template/about.tpl +++ b/themes/default/template/about.tpl @@ -14,5 +14,10 @@ <li>{$THEME_ABOUT}</li> </ul> {/if} + {if not empty($about_msgs)} + {foreach from=$about_msgs item=elt} + {$elt} + {/foreach} + {/if} </div> </div> |