Quote:
Originally Posted by Bolas
to reorder (no choose by user)?
Just change ASC to DESC in the longest query in journal.php file...
in journal.php find
PHP Code:
GROUP BY journal_entries.entry_id
ORDER BY entrydate ASC
LIMIT $start,$perpage
replace it with
PHP Code:
GROUP BY journal_entries.entry_id
ORDER BY entrydate DESC
LIMIT $start,$perpage
|
thanks for that, worked for me