diff options
author | rvelices <rv-github@modusoptimus.com> | 2013-01-22 19:17:09 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2013-01-22 19:17:09 +0000 |
commit | 35717d6ad96540fb13bf87ae270b553d47a5b3ee (patch) | |
tree | f878d91ee603fc60a52a6e940ba554519e6df51d /themes/default/template/picture_content.tpl | |
parent | d855ec866d9c116b6923f293af3af86c0241187e (diff) |
javascript int type instead of string
git-svn-id: http://piwigo.org/svn/trunk@20336 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/picture_content.tpl')
-rw-r--r-- | themes/default/template/picture_content.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/template/picture_content.tpl b/themes/default/template/picture_content.tpl index ef54bc100..2b745f65f 100644 --- a/themes/default/template/picture_content.tpl +++ b/themes/default/template/picture_content.tpl @@ -4,7 +4,7 @@ {footer_script}var error_icon = "{$ROOT_URL}{$themeconf.icon_dir}/errors_small.png"{/footer_script} {/if} -<img {if $current.selected_derivative->is_cached()}src="{$current.selected_derivative->get_url()}" {$current.selected_derivative->get_size_htm()} {else}src="{$ROOT_URL}{$themeconf.img_dir}/ajax_loader.gif" data-src="{$current.selected_derivative->get_url()}"{/if} alt="{$ALT_IMG}" id="theMainImage" usemap="#map{$current.selected_derivative->get_type()}" title="{if isset($COMMENT_IMG)}{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{else}{$current.TITLE|@replace:'"':' '} - {$ALT_IMG}{/if}"> +<img {if $current.selected_derivative->is_cached()}src="{$current.selected_derivative->get_url()}" {$current.selected_derivative->get_size_htm()}{else}src="{$ROOT_URL}{$themeconf.img_dir}/ajax_loader.gif" data-src="{$current.selected_derivative->get_url()}"{/if} alt="{$ALT_IMG}" id="theMainImage" usemap="#map{$current.selected_derivative->get_type()}" title="{if isset($COMMENT_IMG)}{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{else}{$current.TITLE|@replace:'"':' '} - {$ALT_IMG}{/if}"> {foreach from=$current.unique_derivatives item=derivative key=derivative_type}{strip} <map name="map{$derivative->get_type()}"> |