From: garvinhicking Date: Fri, 11 Aug 2006 08:11:58 +0000 (+0000) Subject: fix propper order X-Git-Tag: 1.1~142 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=a98cff1d9e1a3be0f54ec9d44e1835bc6d0a8063;p=s9y.git fix propper order --- diff --git a/include/functions_entries.inc.php b/include/functions_entries.inc.php index a4e4ae8..cb7da0d 100644 --- a/include/functions_entries.inc.php +++ b/include/functions_entries.inc.php @@ -438,7 +438,7 @@ function serendipity_fetchEntryData(&$ret) { LEFT JOIN {$serendipity['dbPrefix']}entrycat AS ec ON ec.categoryid = c.categoryid WHERE " . serendipity_db_in_sql('ec.entryid', $search_ids) . " - ORDER BY c.category_name DESC"; + ORDER BY c.category_name ASC"; $search_ret =& serendipity_db_query($query, false, 'assoc');