Topic: FIX: Auto Archiving for the New Year
What's this for?
There seems to be a bug where auto archiving wont archive your news for the new year.
Note: If you are after the fix which displays false auto archiving errors when the auto archive feature is turn off check out https://cutephp.com/forum/index.php?s=&show...indpost&p=61660
How to Fix?
Open functions.inc.php
Replace this (Line 179 in CN 1.4.1)..
if($now[year] >= (int)$last_archived[year] and $now[month] > (int)$last_archived[month]){
With this..
if(($now[year] >= (int)$last_archived[year] and $now[month] > (int)$last_archived[month]) or ((int)$last_archived[month] != 1 and $now[month] == 1)){