Skip to content

Commit

Permalink
fix #2024 제거된 모듈의 즐겨찾기를 삭제할 수 없는 문제 고침
Browse files Browse the repository at this point in the history
  • Loading branch information
bnu committed Sep 1, 2017
1 parent 8fa69dc commit 7705df5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/admin/tpl/_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ <h1>
<a href="#favorite" data-href="favorite" title="{$lang->favorite}"><span class="tx">{$lang->favorite}</span></a>
<ul id="favorite" style="display:block"|cond="$_COOKIE['__xe_admin_gnb_tx_favorite'] == 'open'">
<li loop="$favorite_list => $favorite">
<a href="{getUrl('', 'module', 'admin', 'act', $favorite->admin_index_act)}" title="{$favorite->title}">{$favorite->title}</a>
<a cond="$favorite->title" href="{getUrl('', 'module', 'admin', 'act', $favorite->admin_index_act)}" title="{$favorite->title}">{$favorite->title}</a>
<a cond="!$favorite->title">{$lang->msg_not_founded}</a>
<form class="remove" action="./" method="post">
<input type="hidden" name="module" value="admin" />
<input type="hidden" name="act" value="procAdminToggleFavorite" />
Expand Down

0 comments on commit 7705df5

Please sign in to comment.