diff options
author | mistic100 <mistic@piwigo.org> | 2012-02-17 19:30:52 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-02-17 19:30:52 +0000 |
commit | e474f947fa8763daad243166a57f966bd304642e (patch) | |
tree | 30d7e0e193c57fb7cf6b6f2ca45540913cfaa892 /include/picture_comment.inc.php | |
parent | 553ba4569c6a774de5d81e1b0af50b139ce40c94 (diff) |
feature 2379: option to change comments order: change caption again, fix a bug in config page (induced by r13087)
git-svn-id: http://piwigo.org/svn/trunk@13224 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/picture_comment.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index 6ace8fa3e..0a183f618 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -134,7 +134,7 @@ SELECT $template->assign(array( 'COMMENTS_ORDER_URL' => add_url_params( duplicate_picture_url(), array('comments_order'=> ($comments_order == 'ASC' ? 'DESC' : 'ASC') ) ), - 'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('old → new') : l10n('new → old'), + 'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('Show latest comment first') : l10n('Show oldest comments first'), )); $query = ' |