Fix missing member menu in mobile default communication skin

This commit is contained in:
Kijin Sung 2023-12-30 20:27:46 +09:00
parent 7a8b62448d
commit 3655a65eef
3 changed files with 12 additions and 0 deletions

View file

@ -1,4 +1,6 @@
<load target="./css/mcommunication.css" />
<include target="^/modules/member/m.skins/default/common_header.html" />
<div class="bd">
<div class="hx h2">
<h2>{$lang->cmd_message_box}</h2>
@ -9,3 +11,5 @@
</li>
</ul>
</div>
<include target="^/modules/member/m.skins/default/common_footer.html" />

View file

@ -1,4 +1,6 @@
<load target="css/mcommunication.css" />
<include target="^/modules/member/m.skins/default/common_header.html" cond="empty($messages_skip_header_footer)" />
<div class="hx h2">
<h2>{$lang->message_box[$message_type]}<a href="{getUrl('page','','act','dispCommunicationMessageBoxList','message_srl','')}" class="ca">{$lang->cmd_message_box}</a></h2>
</div>
@ -26,3 +28,4 @@
<a cond="$page != $page_navigation->last_page" href="{getUrl('page',$page+1,'document_srl','')}" class="next">{$lang->cmd_next}</a>
</div>
<include target="^/modules/member/m.skins/default/common_footer.html" cond="empty($messages_skip_header_footer)" />

View file

@ -1,5 +1,7 @@
<load target="css/mcommunication.css" />
<load target="./js/communication.js" />
<include target="^/modules/member/m.skins/default/common_header.html" />
<div class="hx h2">
<h2>{$message->title}</h2><span class="ex">{$message->nick_name} | {zdate($message->regdate, "Y.m.d H:i")}</span>
</div>
@ -22,4 +24,7 @@
var confirm_delete_msg = "{$lang->confirm_delete}";
</script>
{@ $messages_skip_header_footer = true}
<include target="messages.html" />
<include target="^/modules/member/m.skins/default/common_footer.html" />