nieuws: strict year parsing, fallback to all
authorMischa POSLAWSKY <perl@shiar.org>
Sat, 16 Jun 2018 18:11:43 +0000 (20:11 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 16 Jun 2018 19:58:29 +0000 (21:58 +0200)
nieuws/index.php

index 25efd2daf017882e6e3b49ac55c623e755457f5f..51cab26931bb9823c603fdae0f57756effa5e36a 100644 (file)
@@ -12,7 +12,7 @@ if ($page and !is_numeric($page)) {
 if ($year) {
        ob_clean();
        $title = "Nieuws";
-       if (is_numeric($year)) {
+       if (is_numeric($year) and $year > 999) {
                $match = "$Page/$year/";
                if (is_numeric($page)) {
                        $title .= ' '.$monthname[intval($page)];
@@ -20,7 +20,7 @@ if ($year) {
                }
                $title .= ' '.$year;
        }
-       else {
+       elseif ($year === '19') {
                $match = "$Page/19??/";
                $title .= " vóór 2000";
        }
@@ -32,10 +32,6 @@ if ($year) {
        return 1;
 }
 
-if ($Args) {
-       return;
-}
-
 print '<div id="news">'."\n\n";
 
 foreach (array_reverse(glob("$Page/2???")) as $page) {
@@ -45,7 +41,7 @@ foreach (array_reverse(glob("$Page/2???")) as $page) {
 }
 
 if ($pages = glob("$Page/19??/*.html")) {
-       printf('<h3><a href="/%s">%s</a></h3>'."\n", "$Page/oud", 'Eerder');
+       printf('<h3><a href="/%s">%s</a></h3>'."\n", "$Page/19", 'Eerder');
        printtoc($pages);
 }