Skip to content

Commit

Permalink
Fix incorrect getUrl() in default message skin
Browse files Browse the repository at this point in the history
  • Loading branch information
kijin committed Aug 23, 2017
1 parent 3a91aa6 commit 9b4a61c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/message/m.skins/default/system_message.html
Expand Up @@ -44,7 +44,7 @@ <h2>{$system_message}</h2>
<!--@end-->
<!--@if($is_logged)-->
<div class="logOut">
<a href="{getUrl('act','dispMemberLogout','module','')}" class="bn dark">{$lang->cmd_logout}</a>
<a href="{getUrl('','act','dispMemberLogout','module','')}" class="bn dark">{$lang->cmd_logout}</a>
</div>
<!--@end-->
</div>
Expand Down
4 changes: 2 additions & 2 deletions modules/message/skins/default/system_message.html
Expand Up @@ -36,10 +36,10 @@ <h1><i class="icon-user"></i> {$system_message}</h1>
</fieldset>
</form>
<p cond="$is_logged" style="text-align:center">
<a href="{getUrl('act','dispMemberLogout','module','')}" class="btn">{$lang->cmd_logout}</a>
<a href="{getUrl('','act','dispMemberLogout','module','')}" class="btn">{$lang->cmd_logout}</a>
</p>
<p cond="!$is_logged && $module != 'admin'" style="text-align:center">
<a href="{getUrl('act','dispMemberLoginForm','module','', 'mid', '')}" class="btn">{$lang->cmd_login}</a>
<a href="{getUrl('','act','dispMemberLoginForm','module','', 'mid', '')}" class="btn">{$lang->cmd_login}</a>
</p>
</div>
<div class="login-footer" cond="!$is_logged">
Expand Down

0 comments on commit 9b4a61c

Please sign in to comment.