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}>
|
ただし、未検証です。 うまく行ったら、報告をお願いします。
d3blog-1.03 に対応する モバイルテンプレート、ver0.4を公開しました。
- d3コメント統合を使用している環境で、d3blog-1.03にアップする場合は、必ずアップデートしてください。
d3blog-1.03 に対応する モバイルテンプレート、ver0.4の日付表示に不具合があり、修正版ver0.4.1をアップしました。
修正箇所は、以下です。
11
| <{else}><{$entry.blogger.uname}><{/if}></a> <span class="d3blogEntryCreated" style="text-align: right;"><{$entry.published|format_timestamp:"m"}></span></dd>
|
11
| <{else}><{$entry.blogger.uname}><{/if}></a> <span class="d3blogEntryCreated" style="text-align: right;"><{$entry.published|formatTimestamp:"m"}></span></dd>
|
d3blog-1.02.3あたりまで本体に同梱されていた「(html)/class/smarty/plugins/modifier.format_timestamp.php」が同梱されなくなっていることへの修正対応です。
以上、よろしくお願いします。