X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/4d7efe1c7eacff8a21bea95828ef0528a47f503e..17653d5b7ab2c7276c97b0953648fcb885383711:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index fbc6384..ff433d5 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -1,19 +1,25 @@ login; @list ($year, $page) = explode('/', trim($Args, '/')); -if ($User and $User->admin('news')) { +if ($User->admin("edit $Page")) { print ''."\n"; } if ($page and !is_numeric($page)) { - $edit = $User && $User->admin('news') ? htmlspecialchars(@$_GET['edit']) : NULL; + $Article->meta['og:type'] = 'article'; + $edit = $User->admin("edit $Page$Args") ? htmlspecialchars(@$_GET['edit']) : NULL; if ($edit) { $Article->title = $edit; } - $Place[1] = ' '.$Article->date.''; - print preg_replace('{(?<=

)(.*?)(?=

)}', ($edit ?: '\1').' [[1]]', ob_get_clean()); - if ($User and $User->admin('news')) { + if ($Article->dateparts) { + $Place[1] = ' '.$Article->date.''; + } + else { + $Place[1] = ''; + } + print preg_replace('{(?<=

)(.*?)(?=

)}', ($edit ?: '\1').' [[1]]', $Article->raw); + if ($User->admin("edit $Page$Args")) { $taglist = []; foreach (glob("$Page/.tags/*") as $tagpath) { $tagname = pathinfo($tagpath, PATHINFO_BASENAME); @@ -37,11 +43,10 @@ if ($page and !is_numeric($page)) { if ($replyform) { print placeholder_include('reply'); } - return 1; + return; } if ($year) { - ob_clean(); $match = $Page; $title = "Nieuws"; if (is_numeric($year) and $year > 999) { @@ -63,5 +68,5 @@ if ($year) { print "

$title

\n\n"; print placeholder_include('nieuws', [$match]); - return 1; + return; }