page: read file during article object initialisation
[minimedit.git] / nieuws / index.php
index 23cfe4f7b78a3c3ec2beb846d3332921a44d1475..0f81de28edcf428bd5dacdc1fa6a945b5751fbe9 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 ($Article->file) {
+       if ($edit) {
+               $Article->title = $edit;
+       }
+       if (isset($Article->raw)) {
                $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) {