page: header metadata from article object
[minimedit.git] / nieuws / index.php
index 23cfe4f7b78a3c3ec2beb846d3332921a44d1475..18416b32ad342377fe3a5283608b05940e76e99c 100644 (file)
@@ -8,15 +8,14 @@ if ($User and $User->admin) {
 
 if ($page and !is_numeric($page)) {
        $edit = $User && $User->admin ? htmlspecialchars(@$_GET['edit']) : NULL;
-       $Place['title'] = $edit ?: $Article->title;
+       if ($edit) {
+               $Article->title = $edit;
+       }
        if ($Article->file) {
                $Place['description'] = $Article->teaser;
        }
        $Place[1] = ' <small class="date">'.$Article->date.'</small>';
        print preg_replace('{(?<=<h2>)(.*?)(?=</h2>)}', ($edit ?: '\1').' [[1]]', ob_get_clean());
-       if ($Article->file and $Article->image) {
-               $Place['image'] = "/".$Article->thumb('600x');
-       }
        if ($User and $User->admin) {
                $taglist = [];
                foreach (glob("$Page/.tags/*") as $tagpath) {