From 69c9a9dd452299e0e8f7335966a1d0b4036df583 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Mon, 9 Apr 2012 20:46:57 +1000 Subject: [PATCH] bugfix: PHP notices when uploading a non-image file --- inc/functions.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 05bfd598..80b85a4e 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -708,8 +708,15 @@ $query->bindValue(':thumbwidth', $post['thumbwidth'], PDO::PARAM_INT); $query->bindValue(':thumbheight', $post['thumbheight'], PDO::PARAM_INT); $query->bindValue(':file', $post['file']); - $query->bindValue(':width', $post['width'], PDO::PARAM_INT); - $query->bindValue(':height', $post['height'], PDO::PARAM_INT); + + if(isset($post['width'], $post['height'])) { + $query->bindValue(':width', $post['width'], PDO::PARAM_INT); + $query->bindValue(':height', $post['height'], PDO::PARAM_INT); + } else { + $query->bindValue(':width', null, PDO::PARAM_NULL); + $query->bindValue(':height', null, PDO::PARAM_NULL); + } + $query->bindValue(':filesize', $post['filesize'], PDO::PARAM_INT); $query->bindValue(':filename', $post['filename']); $query->bindValue(':filehash', $post['filehash']);