Changelog | 1 +
banana/spool.inc.php | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
git-svn-id: svn+ssh://murphy/home/svn/banana/trunk@268
9869982d-c50d-0410-be91-
f2a2ec7c7c7b
Sat, 23 Jun 2007 Florent Bruneau <florent.bruneau@m4x.org>
+ * Add the year of the post in the spool for post older than 90 days
* Bugfix: To/Newsgroups formatting
Tue, 12 Jun 2007 Florent Bruneau <florent.bruneau@m4x.org>
$format = _b_('hier')." %H:%M";
} elseif ($today < 7 + $dday) {
$format = '%a %H:%M';
- } else {
+ } elseif ($today < 90 + $dday) {
$format = '%a %e %b';
+ } else {
+ $format = '%a %e %b %Y';
}
return strftime($format, $stamp);
}