diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-16 22:01:35 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-16 22:01:35 +0100 |
| commit | 9c585c0575c3c8488a843b88e6d7f6627819e720 (patch) | |
| tree | fee090982d4677e698cdedd8536ab5388b5b6975 | |
| parent | 2e4317cc1adbf9add52dc86a1f20e354bea179d0 (diff) | |
| download | blogs-9c585c0575c3c8488a843b88e6d7f6627819e720.tar.gz blogs-9c585c0575c3c8488a843b88e6d7f6627819e720.tar.bz2 blogs-9c585c0575c3c8488a843b88e6d7f6627819e720.zip | |
Tidy $showBlogTitle since it was hard coded anyway
| -rwxr-xr-x | templates/blog_list_post.tpl | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/templates/blog_list_post.tpl b/templates/blog_list_post.tpl index 9c05bab..475f7c0 100755 --- a/templates/blog_list_post.tpl +++ b/templates/blog_list_post.tpl @@ -26,13 +26,6 @@ {/if} <div class="header"> - {if $showBlogTitle eq 'y' && $aPost.blogs} - <div class="blog-title"> - {foreach from=$aPost.blogs item=memberBlog key=blogContentId name=blogTitleLoop} - {if !$smarty.foreach.blogTitleLoop.first} • {/if}<a href="{$memberBlog.blog_url}">{$memberBlog.title|escape}</a> - {/foreach} - </div> - {/if} <h2> {if $aPost.title} {$aPost.title|escape:html} @@ -51,7 +44,7 @@ {/if}<br/> {$aPost.publish_date|default:$aPost.created|bit_long_date}<br /> - {if $showBlogTitle ne 'y' && count($aPost.blogs) > 0} + {if count($aPost.blogs) > 0} {tr}Posted to{/tr} {foreach from=$aPost.blogs item=memberBlog key=blogContentId name=memberBlogLoop} <a href="{$memberBlog.blog_url}">{$memberBlog.title}</a>{if $smarty.foreach.memberBlogLoop.total > 1 && !$smarty.foreach.memberBlogLoop.last }, {/if} |
