edit/page: editor notification of save results
[minimedit.git] / nieuws.php
index 84a6172638cd446dc98a342f333497065bdfa9e4..6bf66160fa594a6c56d24da89b3eaf93a176adc0 100644 (file)
@@ -1,35 +1,4 @@
 <?php
-include 'nieuws.inc.php';
-
-@list ($year, $month, $page) = explode('/', trim($Args, '/'));
-
-if ($page) {
-       $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
-       print shownewsarticle($Args, FALSE, $edit);
-       return 1;
-}
-
-if ($year) {
-       ob_clean();
-       print "<h2>Nieuws $year</h2>\n\n";
-
-       print '<div id="news">'."\n\n";
-       shownews("$Page/$year/??", 100);
-       print "</div>\n\n";
-
-       return 1;
-}
-
-print '<div id="news">'."\n\n";
-
-foreach (array_reverse(glob("$Page/2???")) as $page) {
-       $year = basename($page, '.html');
-       printf('<h3><a href="/%s">%s</a></h3>'."\n", $page, $year);
-       printtoc("$page/??");
-}
-
-print "</div>\n\n";
-
-if (!empty($User['admin'])) {
-       print '<script src="/nieuws/edit.js"></script>'."\n";
-}
+include_once 'nieuws.inc.php';
+$articles = (ltrim($Args, '/') ?: 'nieuws') . '/????';
+shownews($articles, @$Place['n'] ?: 5);