add option to sort users and Characters by registration date

This commit is contained in:
coderkun 2014-05-01 14:29:34 +02:00
commit 39c1c06e5b
7 changed files with 88 additions and 32 deletions

View file

@ -13,6 +13,7 @@
<select name="sortorder" onchange="this.form.submit();">
<option value="username" <?php if($sortorder == 'username') : ?>selected="selected"<?php endif ?>><?=_('Username')?></option>
<option value="role" <?php if($sortorder == 'role') : ?>selected="selected"<?php endif ?>><?=_('Role')?></option>
<option value="date" <?php if($sortorder == 'date') : ?>selected="selected"<?php endif ?>><?=_('Date of registration')?></option>
</select>
<noscript><input type="submit" value="<?=_('Sort list')?>" /></noscript>
</fieldset>