diff options
author | friendica <info@friendica.com> | 2015-03-16 15:50:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-16 15:50:45 -0700 |
commit | ccf4734f7bb525ae6b1ebe63e3a2b6b00c4f823b (patch) | |
tree | 540f2540f3e560c0ff9eb0d9d8f10667df955eca /mod | |
parent | 2bd3dc610126b4a3e30cde0c29518e16b2de7805 (diff) | |
download | volse-hubzilla-ccf4734f7bb525ae6b1ebe63e3a2b6b00c4f823b.tar.gz volse-hubzilla-ccf4734f7bb525ae6b1ebe63e3a2b6b00c4f823b.tar.bz2 volse-hubzilla-ccf4734f7bb525ae6b1ebe63e3a2b6b00c4f823b.zip |
make sure this sucker is quiet
Diffstat (limited to 'mod')
-rw-r--r-- | mod/wall_attach.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/wall_attach.php b/mod/wall_attach.php index 465c3e1cc..498389986 100644 --- a/mod/wall_attach.php +++ b/mod/wall_attach.php @@ -22,7 +22,7 @@ function wall_attach_post(&$a) { if($_FILES['userfile']['tmp_name']) { - $x = getimagesize($_FILES['userfile']['tmp_name']); + $x = @getimagesize($_FILES['userfile']['tmp_name']); if(($x) && ($x[2] === IMG_GIF || $x[2] === IMG_JPG || $x[2] === IMG_JPEG || $x[2] === IMG_PNG)) { $args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash'])); $ret = photo_upload($channel,$observer,$args); |