Hi,
by default the static pages are sorted by title, ascending (A->Z).
If you click on the "Last Updated"-Header, you sort by another field, but with the same direction, so from small numbers to large numbers (old->new).
If you click once again on the "Last Updated"-Header. you will invert this sort order.
This is the normal and intended beahvior. I do not have the older version before 1.4.1 installed here to see how the older version behaved.
If you want to change this, you can default your static pages admin to sort by update-time descending by default.
For this however, you have to edit the file
geeklog/public_html/admin/plugins/staticapages/index.php
on line 386 from
Text Formatted Code
$defsort_arr = array('field' => 'sp_title', 'direction' => 'asc');
to
Text Formatted Code
$defsort_arr = array('field' => 'unixdate', 'direction' => 'desc');
Hope this helps.
Please note however that you will have to re-apply this change whenever there is a new version released.
I think that this could be a config option for the plugin, but given the amount of lists in the system, that would be a lot of code to be changed. Volunteers?