diff options
author | rvelices <rv-github@modusoptimus.com> | 2012-10-27 07:18:32 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2012-10-27 07:18:32 +0000 |
commit | fe8330d14f762b05dbc213296f3b6866e58e0218 (patch) | |
tree | c2a03cfbb64c6bb7256c81997ff294bbc9c99523 /themes/default/template/picture.tpl | |
parent | e4d30d6bff0c52b1045a079677dfa9a46348fb0f (diff) |
fix php warning + removed unnecessary
git-svn-id: http://piwigo.org/svn/trunk@18757 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/picture.tpl')
-rw-r--r-- | themes/default/template/picture.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 7e4c95dce..d393f5b89 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -135,13 +135,13 @@ y.callService( <div class="navThumbs"> {if isset($previous)} <a class="navThumb" id="linkPrev" href="{$previous.U_IMG}" title="{'Previous'|@translate} : {$previous.TITLE}" rel="prev"> - <span class="thumbHover prevThumbHover"> </span> + <span class="thumbHover prevThumbHover"></span> <img src="{$previous.derivatives.square->get_url()}" alt="{$previous.TITLE}"> </a> {/if} {if isset($next)} <a class="navThumb" id="linkNext" href="{$next.U_IMG}" title="{'Next'|@translate} : {$next.TITLE}" rel="next"> - <span class="thumbHover nextThumbHover"> </span> + <span class="thumbHover nextThumbHover"></span> <img src="{$next.derivatives.square->get_url()}" alt="{$next.TITLE}"> </a> {/if} |