mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
검색옵션이 뒤죽박죽으로 표시될 수 있는 문제 수정
언어코드 이름이 모두 search_target_list로 같기에 향후 코어나 서드파티에 의해 호출 순서가 바뀌면 다른 모듈의 $lang->search_target_list 변수가 표시될 수 있다.
This commit is contained in:
parent
2330a5d6fd
commit
1d9033742a
4 changed files with 5 additions and 5 deletions
|
|
@ -23,7 +23,7 @@
|
|||
</select>
|
||||
<select name="search_target" style="width:auto;margin:0" title="{$lang->search_target}">
|
||||
<option value="{$identifier}" selected="selected"|cond="$search_target == $identifier">{lang($identifier)}</option>
|
||||
<option loop="$lang->search_target_list => $key,$val" value="{$key}" selected="selected"|cond="$search_target==$key">{$val}</option>
|
||||
<option loop="lang('point.search_target_list') => $key,$val" value="{$key}" selected="selected"|cond="$search_target==$key">{$val}</option>
|
||||
</select>
|
||||
<span class="x_input-append">
|
||||
<input type="search" required name="search_keyword" required value="{escape($search_keyword, false)}" title="{$lang->cmd_search}" style="width:100px" />
|
||||
|
|
@ -126,7 +126,7 @@
|
|||
</select>
|
||||
<select name="search_target" style="width:auto;margin:0" title="{$lang->search_target}">
|
||||
<option value="{$identifier}" selected="selected"|cond="$search_target == $identifier">{lang($identifier)}</option>
|
||||
<option loop="$lang->search_target_list => $key,$val" value="{$key}" selected="selected"|cond="$search_target==$key">{$val}</option>
|
||||
<option loop="lang('point.search_target_list') => $key,$val" value="{$key}" selected="selected"|cond="$search_target==$key">{$val}</option>
|
||||
</select>
|
||||
<span class="x_input-append">
|
||||
<input type="search" name="search_keyword" required value="{escape($search_keyword, false)}" title="{$lang->cmd_search}" style="width:100px" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue