-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
모듈 분류 지정한 경우, 관리페이지에서 게시판 검색 안 되는 버그 #688
Conversation
@lansi951
|
@@ -89,6 +89,7 @@ | |||
<form action="" class="search x_input-append center" no-error-return-url="true"> | |||
<input loop="$param => $key, $val" cond="!in_array($key, array('mid', 'vid', 'act', 'page', 'search_target', 'search_keyword'))" type="hidden" name="{$key}" value="{$val}" /> | |||
<select cond="count($module_category)" name="module_category_srl" title="{$lang->module_category}" style="margin-right:4px"> | |||
<option value="" selected="selected"|cond="!$module_category_srl">{$lang->all}</option> | |||
<option value="0" selected="selected"|cond="$module_category_srl==='0'">{$lang->not_exists}</option> | |||
<option value="{$key}" loop="$module_category => $key,$val" selected="selected"|cond="$module_category==$key">{$val->title}</option> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selected="selected"|cond="$module_category==$key"
이 부분을 selected 될 수 있도록
selected="selected"|cond="$module_category_srl==$key"
감사합니다. :) |
모듈 분류 지정한 경우, 관리페이지에서 게시판 검색 안 되는 버그
@sejin7940 님 대신 풀리퀘스트 합니다.