The following block in $LIFE_TYPE/plugins/technorati/plugintechnorati.class.php
{if $technorati && $technnorati->isEnabled() }
{foreach name=tags from=$tagString item=tagLink}
{assign var="tagString" value=$technorati->getTags($post)}
{if $smarty.foreach.tags.first} technorati tags: {/if}
{$tagLink}
{if !$smarty.foreach.tags.last}, {/if}
{/foreach}{/if}
根據原 plugin 的說明,上述這段並不是在 plugintechnorati.class.php 中,
而是要手動加入 post.template 之中。
但是加入後會有錯誤……
should be changed to
{if $technorati && $technorati->isEnabled() }
{assign var="tagString" value=$technorati->getTags($post)}
{foreach name=tags from=$tagString item=tagLink}
{if $smarty.foreach.tags.first} technorati tags: {/if}
{$tagLink}
{if !$smarty.foreach.tags.last}, {/if}
{/foreach}
{/if}
改在 post.template 加上您的這段程式就一切正常了!!
謝謝您!!:)