diff options
author | mistic100 <mistic@piwigo.org> | 2012-01-15 17:05:30 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-01-15 17:05:30 +0000 |
commit | e673454e05e910de3553103d6f41695c5388ffbc (patch) | |
tree | bfb6422e059cc0f26da227951d0ef74fafccb06d /admin | |
parent | 24eafada3e6f0b8ee27a4088ed50c35e0cad15ed (diff) |
feaure:2379 option to display user comments sorted new>old instead of old>new
git-svn-id: http://piwigo.org/svn/trunk@12894 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r-- | admin/configuration.php | 5 | ||||
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index b7a06aa74..6e4bb0311 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -419,7 +419,10 @@ switch ($page['section']) 'comments', array( 'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'], - )); + 'comments_order'=>$conf['comments_order'], + 'comments_order_options'=> $sort_directions + ) + ); foreach ($comments_checkboxes as $checkbox) { diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index 521ad40c0..232b00356 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -203,6 +203,13 @@ jQuery(document).ready(function () { </span> <input type="text" size="3" maxlength="4" name="nb_comment_page" id="nb_comment_page" value="{$comments.NB_COMMENTS_PAGE}"> </li> + + <li> + <span class="property">{'Default comments order'|@translate}</span> + <select name="comments_order"> + {html_options options=$comments.comments_order_options selected=$comments.comments_order} + </select> + </li> <li> <label> |