X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/9bbd31c352bd9bba51508b40bfad9890a46731b9..f9b855c241ac7273399d1d405b63071b86b87faa:/nieuws/index.php?ds=sidebyside diff --git a/nieuws/index.php b/nieuws/index.php index 51cab26..c90034f 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; }