Topic: [BUG] show_archives.php archive order
CuteNews Compatibility: 1.3.6 - * (no incompatibility reported yet)
Description: When listing all archives it might happen that the archives are'nt ordered by date. This happens when not using the auto-archive but when manually archiving.
Instructions:
in show_archives.php find
if(is_array($arch_arr)){
$arch_arr = array_reverse($arch_arr);
and replace with
if(is_array($arch_arr)){
rsort($arch_arr);
$arch_arr = array_reverse($arch_arr);