Skip to content

Commit

Permalink
Merge pull request #361 from kstenschke/master
Browse files Browse the repository at this point in the history
UI: Article duplicate: changed order select to radio
  • Loading branch information
partikule committed Feb 12, 2016
2 parents 99668bf + e73048b commit cfdd55c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions themes/admin/views/article/duplicate.php
Expand Up @@ -59,13 +59,13 @@
<!-- Order in the new page -->
<dl class="small mt20">
<dt>
<label for="ordering"><?php echo lang('ionize_label_ordering'); ?></label>
<label><?php echo lang('ionize_label_ordering'); ?></label>
</dt>
<dd>
<select name="ordering_select" id="ordering_select" class="select">
<option value="first"><?php echo lang('ionize_label_ordering_first'); ?></option>
<option value="last"><?php echo lang('ionize_label_ordering_last'); ?></option>
</select>
<label for="ordering_first"><?php echo lang('ionize_label_ordering_first'); ?></label>
<input type="radio" name="ordering_select" id="ordering_first" value="first" checked="checked"/>
<label for="ordering_last"><?php echo lang('ionize_label_ordering_last'); ?></label>
<input type="radio" name="ordering_select" id="ordering_last" value="last"/>
</dd>
</dl>

Expand Down

0 comments on commit cfdd55c

Please sign in to comment.