X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/1b37c53095bb46844910ce3f0b699ea9a0b152d8..72aa68cdc990dde3d67b9c8827cd794e4c447968:/widget/reply.php diff --git a/widget/reply.php b/widget/reply.php index 4da0ffa..685a611 100644 --- a/widget/reply.php +++ b/widget/reply.php @@ -10,7 +10,11 @@ $journalcol = [ if ($_POST) { require_once 'upload.inc.php'; try { - $html = messagehtml($_POST['reply']); + $reply = []; + if (isset($_POST['reply']) and $body = $_POST['reply']) { + $reply['raw'] = $body; + $reply['message'] = messagehtml($body); + } if ($_FILES and !empty($_FILES['image'])) { $target = 'data/upload'; if (!file_exists($target)) { @@ -18,19 +22,19 @@ if ($_POST) { } $target .= '/' . $User->login; if ($result = userupload($_FILES['image'], $target)) { + $reply['raw'] .= "/$result"; if (preg_match('(^image/)', $_FILES['image']['type'])) { - $html .= sprintf('

', $result); + $reply['message'] .= sprintf('

', $result); } else { - $html .= sprintf('

Bijgevoegd bestand: %s

', + $reply['message'] .= sprintf('

Bijgevoegd bestand: %s

', $result, basename($result) ); } } } - $query = $Db->set('comments', [ + $query = $Db->set('comments', $reply + [ 'page' => $Page->link, - 'message' => $html, 'author' => $User->login, ]); if (!$query->rowCount()) {