X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/328e964708c7e9dc479a25f9358b2d03e9d7f66c..a1bb8561064d0985ecb6c65054bf352f667bc9b7:/nieuws.inc.php diff --git a/nieuws.inc.php b/nieuws.inc.php index 7e723e4..8af5694 100644 --- a/nieuws.inc.php +++ b/nieuws.inc.php @@ -1,4 +1,5 @@ ', $url, $parts)) return; global $monthname; - return sprintf('%s %s %s', - intval($day), $monthname[intval($month)], $year); + return implode(' ', array_filter([ + intval($parts[3]), $parts[2] > 0 ? $monthname[intval($parts[2])] : '', $parts[1], + ])); } function shownewsarticle($url, $link = TRUE, $title = NULL) @@ -30,10 +30,10 @@ function shownewsarticle($url, $link = TRUE, $title = NULL) return preg_replace('{

(.*?)

}', $title, $html); } -function shownews($root, $limit = 5) +function shownews($input, $limit = 1000) { - if (strpos($root, '/') === FALSE) $root .= '/*'; - foreach (array_reverse(glob("$root/*.html")) as $url) { + if (!is_array($input)) $input = glob("$input/*.html"); + foreach (array_reverse($input) as $url) { print "
"; ob_start(); include $url; @@ -44,10 +44,11 @@ function shownews($root, $limit = 5) } } -function printtoc($root) +function printtoc($input) { + if (!is_array($input)) $input = glob("$input/*.html"); print '