diff options
author | friendica <info@friendica.com> | 2013-10-12 15:12:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-12 15:12:45 -0700 |
commit | 55c43f12b5997ded4a07f01bfc6a01526a9441a7 (patch) | |
tree | f69b126cfcbb337cf571c2bc15739d4463b96646 /mod/dirsearch.php | |
parent | c459228dca89b40189fc50b2cf12f5800ea3c257 (diff) | |
download | volse-hubzilla-55c43f12b5997ded4a07f01bfc6a01526a9441a7.tar.gz volse-hubzilla-55c43f12b5997ded4a07f01bfc6a01526a9441a7.tar.bz2 volse-hubzilla-55c43f12b5997ded4a07f01bfc6a01526a9441a7.zip |
directory date order (sort=date)
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r-- | mod/dirsearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 14307f274..3506178ea 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -132,7 +132,7 @@ function dirsearch_content(&$a) { if($sort_order == 'date') - $order = ""; // Not currently implemented + $order = " order by xchan_name_date desc "; elseif($sort_order == 'reverse') $order = " order by xchan_name desc "; else |