aboutsummaryrefslogtreecommitdiffstats
path: root/mod/wall_attach.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-18 17:40:44 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-18 17:40:44 -0700
commit0883512e30af10ea7ed0f461afc8236a828e7d2b (patch)
treef8935a8593c0e82606c5eb26058533329eb5b63c /mod/wall_attach.php
parent11b7fedd294205de79ec6bf66c8f5276510fc63b (diff)
downloadvolse-hubzilla-0883512e30af10ea7ed0f461afc8236a828e7d2b.tar.gz
volse-hubzilla-0883512e30af10ea7ed0f461afc8236a828e7d2b.tar.bz2
volse-hubzilla-0883512e30af10ea7ed0f461afc8236a828e7d2b.zip
log this since we may need it to track down failures
Diffstat (limited to 'mod/wall_attach.php')
-rw-r--r--mod/wall_attach.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/wall_attach.php b/mod/wall_attach.php
index 498389986..021f9f999 100644
--- a/mod/wall_attach.php
+++ b/mod/wall_attach.php
@@ -23,6 +23,7 @@ function wall_attach_post(&$a) {
if($_FILES['userfile']['tmp_name']) {
$x = @getimagesize($_FILES['userfile']['tmp_name']);
+ logger('getimagesize: ' . print_r($x,true), LOGGER_DATA);
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);