X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/3a4f1ae1a32baa3658d54c3dadf268bab01308a2..d3ed59c2753c2babd5aa9a1c5e0109c644904ba8:/widget/reply.php diff --git a/widget/reply.php b/widget/reply.php index 9e1c7e3..edffaa7 100644 --- a/widget/reply.php +++ b/widget/reply.php @@ -9,9 +9,20 @@ $journalcol = [ if ($_POST) { require_once 'upload.inc.php'; try { + $html = messagehtml($_POST['reply']); + if ($_FILES and !empty($_FILES['image'])) { + $target = 'data/upload'; + if (!file_exists($target)) { + throw new Exception("er is geen uploadmap aanwezig op $target"); + } + $target .= '/' . $User->login; + if ($result = userupload($_FILES['image'], $target)) { + $html .= sprintf('

', $result); + } + } $query = $Db->set('comments', [ 'page' => $Page, - 'message' => messagehtml($_POST['reply']), + 'message' => $html, 'author' => $User->login, ]); if (!$query->rowCount()) { @@ -92,9 +103,9 @@ while ($row = $query->fetch()) { print "\n"; } -if ($User) { +if ($User->login) { print '
  • '; - print '
    '; + print ''; if (isset($Issue) and $User->admin("edit $Page")) { print '

    '; printf( @@ -115,6 +126,13 @@ if ($User) { ); print "

    \n"; } + if (isset($Issue)) { + printf( + '

    ' + . '

    '."\n", + 'image', 'Beeldmateriaal', ' type="file" accept="image/*"' + ); + } printf(''."\n", 'reply', "Bericht van {$User->login}",