X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/85d01336fad3b3110a6bdb395593e29260714acc..088e48c44ae79498f459e79dcf52ff02b2467772:/widget/reply.php?ds=sidebyside diff --git a/widget/reply.php b/widget/reply.php index cedcc49..edffaa7 100644 --- a/widget/reply.php +++ b/widget/reply.php @@ -10,14 +10,15 @@ if ($_POST) { require_once 'upload.inc.php'; try { $html = messagehtml($_POST['reply']); - if ($_FILES and isset($_FILES['image'])) { + 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; - $result = userupload($_FILES['image'], $target); - $html .= sprintf('

', $result); + if ($result = userupload($_FILES['image'], $target)) { + $html .= sprintf('

', $result); + } } $query = $Db->set('comments', [ 'page' => $Page, @@ -102,7 +103,7 @@ while ($row = $query->fetch()) { print "\n"; } -if ($User) { +if ($User->login) { print '
  • '; print '
    '; if (isset($Issue) and $User->admin("edit $Page")) {