diff options
author | nikrou <nikrou@piwigo.org> | 2010-04-20 21:41:07 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-04-20 21:41:07 +0000 |
commit | 9559829f59a64c545dc1589427f467cf45419d02 (patch) | |
tree | 3dd0420c054c429f0fa2c94d43973af1efa30b5d /admin/themes/default/template/themes_installed.tpl | |
parent | c277a646c3ebe3f1706909172a03c2fb5814cdf8 (diff) |
Fix some errors in generated html
git-svn-id: http://piwigo.org/svn/trunk@5931 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/themes_installed.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/themes/default/template/themes_installed.tpl b/admin/themes/default/template/themes_installed.tpl index 9f972486f..d2a37d5e9 100644 --- a/admin/themes/default/template/themes_installed.tpl +++ b/admin/themes/default/template/themes_installed.tpl @@ -11,7 +11,7 @@ {foreach from=$active_themes item=theme} <div class="themeBox{if $theme.is_default} themeDefault{/if}"> <div class="themeName">{$theme.name}{if $theme.is_default} <em>({'default'|@translate})</em>{/if}</div> - <div class="themeShot"><img src="{$theme.screenshot}"></div> + <div class="themeShot"><img src="{$theme.screenshot}" alt=""></div> <div class="themeActions"> <div> {if $theme.deactivable} @@ -41,7 +41,7 @@ {foreach from=$inactive_themes item=theme} <div class="themeBox"> <div class="themeName">{$theme.name}</div> - <div class="themeShot"><img src="{$theme.screenshot}"></div> + <div class="themeShot"><img src="{$theme.screenshot}" alt=""></div> <div class="themeActions"> <div> {if $theme.activable} @@ -66,4 +66,4 @@ </fieldset> {/if} -</div> <!-- themesContent -->
\ No newline at end of file +</div> <!-- themesContent --> |