diff options
author | rvelices <rv-github@modusoptimus.com> | 2009-02-04 02:30:48 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2009-02-04 02:30:48 +0000 |
commit | 06bccdfcc344d25aca27e59250dd93ba95929974 (patch) | |
tree | 769ac1fa6ee5e564cd0abb745a2d94643155ba5e /template/yoga/header.tpl | |
parent | 5c001820a1ef870405542750ee61fefc9c1aa747 (diff) |
optimizations (php only)
- removed unnecessary call to array_unique in get_image_ids_for_tags
- put back in smarty exec time counting (debug mode) for each included template
- prefix some smarty modifiers with @ in some templates
- do not call format_date (still very slow due to mktime and date even after prev commit) from category_default.inc.php - if used in templates format_date can be used as a smarty modifier
git-svn-id: http://piwigo.org/svn/trunk@3120 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/header.tpl')
-rw-r--r-- | template/yoga/header.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/yoga/header.tpl b/template/yoga/header.tpl index 668d7c505..abe063799 100644 --- a/template/yoga/header.tpl +++ b/template/yoga/header.tpl @@ -6,13 +6,13 @@ <meta name="generator" content="Piwigo (aka PWG), see piwigo.org"> {if isset($meta_ref) } {if isset($INFO_AUTHOR)} -<meta name="author" content="{$INFO_AUTHOR|replace:'"':' '}"> +<meta name="author" content="{$INFO_AUTHOR|@replace:'"':' '}"> {/if} {if isset($related_tags)} <meta name="keywords" content="{foreach from=$related_tags item=tag name=tag_loop}{if !$smarty.foreach.tag_loop.first}, {/if}{$tag.name}{/foreach}"> {/if} {if isset($COMMENT_IMG)} -<meta name="description" content="{$COMMENT_IMG|strip_tags:false|replace:'"':' '}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}"> +<meta name="description" content="{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}"> {else} <meta name="description" content="{$PAGE_TITLE}{if isset($INFO_FILE)} - {$INFO_FILE}{/if}"> {/if} |