X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/b95195ed4540a07ac0f31c363101698ada841d67..9bbd31c352bd9bba51508b40bfad9890a46731b9:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index 05c995a..51cab26 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -11,14 +11,18 @@ if ($page and !is_numeric($page)) { if ($year) { ob_clean(); - if (is_numeric($year)) { - $title = "Nieuws ".($page ? $monthname[$page].' ' : '').$year; + $title = "Nieuws"; + if (is_numeric($year) and $year > 999) { $match = "$Page/$year/"; - if ($page) $match .= sprintf('%02d-', $page); + if (is_numeric($page)) { + $title .= ' '.$monthname[intval($page)]; + $match .= sprintf('%02d-', $page); + } + $title .= ' '.$year; } - else { - $title = "Nieuws vóór 2000"; + elseif ($year === '19') { $match = "$Page/19??/"; + $title .= " vóór 2000"; } print "

$title

\n\n"; @@ -28,10 +32,6 @@ if ($year) { return 1; } -if ($Args) { - return; -} - print '
'."\n\n"; foreach (array_reverse(glob("$Page/2???")) as $page) { @@ -41,7 +41,7 @@ foreach (array_reverse(glob("$Page/2???")) as $page) { } if ($pages = glob("$Page/19??/*.html")) { - printf('

%s

'."\n", "$Page/oud", 'Eerder'); + printf('

%s

'."\n", "$Page/19", 'Eerder'); printtoc($pages); }