diff options
author | vdigital <vdigital@piwigo.org> | 2008-12-30 20:17:37 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-12-30 20:17:37 +0000 |
commit | 7a75e9cfb39737492b2ba41260da19ae01851d7b (patch) | |
tree | f62c3992f44d70da29cff6aef2617094dce6ab93 /template/yoga/picture_content.tpl | |
parent | 437153c7b6f7aebb98879b7ec53cb9435d02addf (diff) |
- Change the title logic for a better index in Google images
(It was already done but it should be improved).
git-svn-id: http://piwigo.org/svn/branches/2.0@3031 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/picture_content.tpl')
-rw-r--r-- | template/yoga/picture_content.tpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/template/yoga/picture_content.tpl b/template/yoga/picture_content.tpl index 7e15a1bb3..5c9291357 100644 --- a/template/yoga/picture_content.tpl +++ b/template/yoga/picture_content.tpl @@ -2,7 +2,10 @@ {if isset($high) } <a href="javascript:phpWGOpenWindow('{$high.U_HIGH}','{$high.UUID}','scrollbars=yes,toolbar=no,status=no,resizable=yes')"> {/if} - <img src="{$SRC_IMG}" style="width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;" alt="{$ALT_IMG}"> + <img src="{$SRC_IMG}" style="width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;" alt="{$ALT_IMG}" + {if isset($COMMENT_IMG)} + title="{$COMMENT_IMG|replace:'"':' '}" {else} title="{$current.TITLE|replace:'"':' '} - {$ALT_IMG}" + {/if}> {if isset($high) } </a> <p>{'picture_high'|@translate}</p> |