mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 06:42:14 +09:00
Applying new syntax for template files
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9715 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
38d2d1d6c2
commit
1ddea23170
2 changed files with 15 additions and 15 deletions
|
|
@ -16,9 +16,9 @@
|
|||
<th scope="row"><label for="use_vote_up">{$lang->cmd_vote}</label></th>
|
||||
<td class="text">
|
||||
<select name="use_vote_up" id="use_vote_up">
|
||||
<option value="Y" <!--@if($comment_config->use_vote_up=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
||||
<option value="S" <!--@if($comment_config->use_vote_up=='S')-->selected="selected"<!--@end-->>{$lang->use_and_display}</option>
|
||||
<option value="N" <!--@if($comment_config->use_vote_up=='N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
||||
<option value="Y" selected="selected"|cond="$comment_config->use_vote_up=='Y'">{$lang->use}</option>
|
||||
<option value="S" selected="selected"|cond="$comment_config->use_vote_up=='S'">{$lang->use_and_display}</option>
|
||||
<option value="N" selected="selected"|cond="$comment_config->use_vote_up=='N'">{$lang->notuse}</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
@ -26,9 +26,9 @@
|
|||
<th scope="row"><label for="use_vote_down">{$lang->cmd_vote_down}</label></th>
|
||||
<td class="text">
|
||||
<select name="use_vote_down" id="use_vote_down">
|
||||
<option value="Y" <!--@if($comment_config->use_vote_down=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
|
||||
<option value="S" <!--@if($comment_config->use_vote_down=='S')-->selected="selected"<!--@end-->>{$lang->use_and_display}</option>
|
||||
<option value="N" <!--@if($comment_config->use_vote_down=='N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
|
||||
<option value="Y" selected="selected"|cond="$comment_config->use_vote_down=='Y'">{$lang->use}</option>
|
||||
<option value="S" selected="selected"|cond="$comment_config->use_vote_down=='S'">{$lang->use_and_display}</option>
|
||||
<option value="N" selected="selected"|cond="$comment_config->use_vote_down=='N'">{$lang->notuse}</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue