X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/686de24f732b400e770df83b469c37bf4e6d4874..ae841e9139f7eb89f8f5fc2242d4b0d7c121418a:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index d6a85e7..374b9b0 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -1,11 +1,61 @@ Reacties'."\n"; + $pagelink = $Page.$Args; + + if ($_POST) { + try { + @mkdir($pagelink); + $target = $pagelink.'/'.date('YmdHis').':'.$User['name'].'.txt'; + $written = file_put_contents($target, $_POST['reply']); + if ($written === FALSE) { + throw new Exception('Fout bij opslaan'); + } + $_POST['reply'] = NULL; + } + catch (Exception $e) { + print '

Antwoord niet opgeslagen.

'."\n\n"; + } + } + + print '\n\n"; + } + return 1; } @@ -26,9 +76,7 @@ if ($year) { } print "

$title

\n\n"; - print '
'."\n\n"; shownews(glob($match.'*.html')); - print "
\n\n"; return 1; } @@ -47,6 +95,20 @@ if ($pages = glob("$Page/19??/*.html")) { print "\n\n"; +if ($replyform) { + print "

Melding rapporteren

\n"; + $_REQUEST['subject'] = 'melding'; + require 'contact.php'; +?> +
+

+ + +

+
+'."\n"; }