X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/9bbd31c352bd9bba51508b40bfad9890a46731b9..177953fe451a3e393cf9d63bc977de11544bd395:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index 51cab26..506cd05 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"; }