issue: reply edit of page and announce columns
[minimedit.git] / issue / index.php
index 4f0f57f5b9beb1c94446cac70f9a762aee915248..51d1de44e78e910b1cb278db55bccd8d8620f33a 100644 (file)
@@ -21,11 +21,18 @@ if ($id and ctype_digit($id)) {
                )->fetch();
                if (!$row) throw new Exception('Antwoordnummer niet gevonden');
 
-               print "<h2>{$Page->title}</h2>\n";
                printf('<form method="post" action="%s" enctype="multipart/form-data">',
                        $Page->handler
                );
+               print "<h2>{$Page->title}</h2>\n";
                printf('<input type="hidden" name="%s" value="%s" />'."\n", 'id', $row->id);
+               printf(
+                       '<input type="hidden" name="%s" value="" />'
+                       . '<input type="checkbox" id="%1$s" name="%1$s" value="1"%s />'
+                       . '<label for="%1$s"> %s</label>'."\n<p>",
+                       'announce', $row->announced ? ' checked' : '', 'Aangekondigd'
+               );
+               printf('<input type="text" name="%s" value="%s" /><p>'."\n", 'page', $row->page);
                printf('<textarea id="%s" name="%1$s" cols=60 rows=3>%s</textarea>'."\n",
                        'reply',
                        htmlspecialchars($row->raw)