d3blogがアップデートされました。
ただ、最新版、1.03に、モバイルテンプレートの現行バージョン(0.3)がまだ対応できていません。 (D3コメント統合を利用している場合)
これは、d3blog本体が、D3コメント統合のコメント数カウント機能を d3blog本体ソース側の処理に取り込んだためです。
- 変更理由は、作者のHodaka様からの説明がここにあります。
当該バージョンに対応したモバイルテンプレートは、もう少々お待ちください。
お急ぎの方は、「inc_entry.php」の、最後のほう
38
39
40
41
42
43
44
| <{if ($currentUser.user_perm.blog_perm_edit and $currentUser.uid eq $entry.uid) or $currentUser.user_perm.blog_editor}><li><a href="<{$xoops_url}>/modules/<{$mydirname}>/submit.php?bid=<{$entry.bid}>" title="<{$smarty.const._MD_D3BLOG_LANG_EDIT_THIS_ENTRY}>"><{$smarty.const._EDIT}></a></li><{/if}>
<{if $moduleConfig.com_agent ne $mydirname}>
<{d3comment mode="count" var="postscount" mydirname=$mydirname class="d3blogD3commentEntry"}>
<li><{if $postscount}><a href="<{$mod_url}>/details.php?bid=<{$entry.bid}>#comment" title="<{$smarty.const._MD_D3BLOG_LANG_READ_COMMENTS|replace:'%s':$entry.title}>"><{$smarty.const._MD_D3BLOG_LANG_COMMENTS}></a><{else}><{$smarty.const._MD_D3BLOG_LANG_COMMENTS}><{/if}> (<{$postscount}>)</li>
<{else}>
<li><{if $entry.comments}><a href="<{$mod_url}>/details.php?bid=<{$entry.bid}>#comment" title="<{$smarty.const._MD_D3BLOG_LANG_READ_COMMENTS|replace:'%s':$entry.title}>"><{$smarty.const._MD_D3BLOG_LANG_COMMENTS}></a><{else}><{$smarty.const._MD_D3BLOG_LANG_COMMENTS}><{/if}> (<{$entry.comments}>)</li>
<{/if}>
|
を、以下のように編集してみてください。
33
34
35
36
| <{if ($currentUser.user_perm.blog_perm_edit and $currentUser.uid eq $entry.uid) or $currentUser.user_perm.blog_editor}><li><a href="<{$xoops_url}>/modules/<{$mydirname}>/submit.php?bid=<{$entry.bid}>" title="<{$smarty.const._MD_D3BLOG_LANG_EDIT_THIS_ENTRY}>"><{$smarty.const._EDIT}></a></li><{/if}>
<{if $moduleConfig.com_rule ne $smarty.const.XOOPS_COMMENT_APPROVENONE}>
<li><{if $entry.comments}><a href="<{$mod_url}>/details.php?bid=<{$entry.bid}>#comment" title="<{$smarty.const._MD_D3BLOG_LANG_READ_COMMENTS|replace:'%s':$entry.title}>"><{$smarty.const._MD_D3BLOG_LANG_COMMENTS}></a><{else}><{$smarty.const._MD_D3BLOG_LANG_COMMENTS}><{/if}> (<{$entry.comments}>)</li>
<{/if}>
|
ただし、未検証です。 うまく行ったら、報告をお願いします。