Fix #2094 remove page and message_type parameters from links in communication module skin

This commit is contained in:
Kijin Sung 2023-03-23 22:05:26 +09:00
parent 61c02929f2
commit 44288fcb78
6 changed files with 15 additions and 14 deletions

View file

@ -3,6 +3,6 @@
<section class="xc">
<ul class="nav nav-tabs" cond="$is_logged && $logged_info->menu_list && (!$member_srl || $member_srl == $logged_info->member_srl)">
<li loop="$logged_info->menu_list => $key,$val" class="active"|cond="$key==$act">
<a href="{getUrl('act',$key)}">{lang($val)}</a>
<a href="{getUrl(['mid' => $mid, 'act' => $key])}">{lang($val)}</a>
</li>
</ul>

View file

@ -84,11 +84,11 @@
.xc input[type="file"]:focus,
.xc input[type="radio"]:focus,
.xc input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}
.xc input:-moz-placeholder,
.xc input:-moz-placeholder,
.xc textarea:-moz-placeholder {color:#999999}
.xc input:-ms-input-placeholder,
.xc input:-ms-input-placeholder,
.xc textarea:-ms-input-placeholder {color:#999999}
.xc input::-webkit-input-placeholder,
.xc input::-webkit-input-placeholder,
.xc textarea::-webkit-input-placeholder {color:#999999}
.xc input,
.xc textarea{margin-left:0}
@ -102,11 +102,11 @@
.xc input[type="checkbox"][disabled],
.xc input[type="radio"][readonly],
.xc input[type="checkbox"][readonly]{background-color:transparent}
.xc input:focus:invalid,
.xc textarea:focus:invalid,
.xc input:focus:invalid,
.xc textarea:focus:invalid,
.xc select:focus:invalid {color:#b94a48;border-color:#ee5f5b}
.xc input:focus:invalid:focus,
.xc textarea:focus:invalid:focus,
.xc input:focus:invalid:focus,
.xc textarea:focus:invalid:focus,
.xc select:focus:invalid:focus {border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}
/* Forms */
.xc .form-horizontal .control-group{margin-bottom:20px;*zoom:1}
@ -241,6 +241,7 @@
.xc textarea,
.xc select,
.xc button,
.xc a.btn,
.xc table{font-size:13px}
.xc h1{font-size:22px}
.xc .nav a,
@ -249,4 +250,4 @@
.xc .table>caption{text-align:left;font-weight:bold}
.xc .table>caption>.pull-right{position:relative;top:-8px}
.xc .control-group:first-child,
.xc .control-group:first-of-type{border-top:0}
.xc .control-group:first-of-type{border-top:0}

View file

@ -4,7 +4,7 @@
<div class="btnArea">
<div style="margin:0;display:block;float:left" class="btn-group">
<button loop="$lang->message_box => $key,$val" class="btn" onclick="location.href=current_url.setQuery('act', 'dispCommunicationMessages').setQuery('message_srl', '').setQuery('message_type', '{$key}'); return false;" style="font-weight:bold"|cond="$message_type == $key">{$val}</button>
<a loop="$lang->message_box => $key,$val" class="btn" href="{getUrl(['mid' => $mid, 'act' => 'dispCommunicationMessages', 'message_type' => $key])}" style="font-weight:bold"|cond="$message_type == $key">{$val}</a>
</div>
<form action="./" method="POST" style="margin:0;display:block;float:right">
<input type="hidden" name="module" value="communication" />