aboutsummaryrefslogtreecommitdiffstats
path: root/mod/wall_attach.php
diff options
context:
space:
mode:
authorMichael Johnston <michaelgeorgejohnston@gmail.com>2015-04-19 18:06:24 -0400
committerMichael Johnston <michaelgeorgejohnston@gmail.com>2015-04-19 18:06:42 -0400
commitdadcfd3ff675bfa0d0098ef34fe6a9aece3d096b (patch)
treeddfd44d40e9acea2ab02bcc17eea9cd7742a9af9 /mod/wall_attach.php
parent82f2765f7bbc990c7106b3d1b3185c8bf04112fb (diff)
downloadvolse-hubzilla-dadcfd3ff675bfa0d0098ef34fe6a9aece3d096b.tar.gz
volse-hubzilla-dadcfd3ff675bfa0d0098ef34fe6a9aece3d096b.tar.bz2
volse-hubzilla-dadcfd3ff675bfa0d0098ef34fe6a9aece3d096b.zip
switch from IMG_XXX constants to IMAGETYPE_XXX constants
Diffstat (limited to 'mod/wall_attach.php')
-rw-r--r--mod/wall_attach.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/wall_attach.php b/mod/wall_attach.php
index 021f9f999..4b7103802 100644
--- a/mod/wall_attach.php
+++ b/mod/wall_attach.php
@@ -24,7 +24,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)) {
+ if(($x) && ($x[2] === IMAGETYPE_GIF || $x[2] === IMAGETYPE_JPEG || $x[2] === IMAGETYPE_PNG)) {
$args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash']));
$ret = photo_upload($channel,$observer,$args);
if($ret['success']) {