X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/3a4f1ae1a32baa3658d54c3dadf268bab01308a2..714373870efc4f371ace2d324530a2354a696da7:/widget/reply.php diff --git a/widget/reply.php b/widget/reply.php index 9e1c7e3..d305fc7 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']), + 'page' => $Page->link, + 'message' => $html, 'author' => $User->login, ]); if (!$query->rowCount()) { @@ -57,7 +68,7 @@ if ($_POST) { } $cols = '*, (SELECT json_agg(journal.*) FROM journal WHERE comment_id = comments.id) AS journal'; -$query = $Db->query("SELECT $cols FROM comments WHERE page = ? ORDER BY created", [$Page]); +$query = $Db->query("SELECT $cols FROM comments WHERE page = ? ORDER BY created", [$Page->link]); print '