aboutsummaryrefslogtreecommitdiffstats
path: root/mod/photos.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-10-04 16:04:52 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-10-04 16:04:52 -0700
commit8424f31aad844b49e74e0fb7a7d197284fb67ec9 (patch)
treeb0711c1d0fd226d5e0061bc5b42cfbb774200431 /mod/photos.php
parent8abac5e5c7128748f8bc8cc8c52ebf37874023c4 (diff)
downloadvolse-hubzilla-8424f31aad844b49e74e0fb7a7d197284fb67ec9.tar.gz
volse-hubzilla-8424f31aad844b49e74e0fb7a7d197284fb67ec9.tar.bz2
volse-hubzilla-8424f31aad844b49e74e0fb7a7d197284fb67ec9.zip
a bit more robust about loading external pics
also friend confirm was getting wrong email
Diffstat (limited to 'mod/photos.php')
-rw-r--r--mod/photos.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/photos.php b/mod/photos.php
index 345a22d50..052f3c185 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -287,7 +287,7 @@ function photos_post(&$a) {
$imagedata = @file_get_contents($src);
$ph = new Photo($imagedata);
- if(! ($image = $ph->getImage())) {
+ if(! $ph->is_valid()) {
notice( t('Unable to process image.') . EOL );
@unlink($src);
killme();