diff options
Diffstat (limited to 'mod/photo.php')
-rw-r--r-- | mod/photo.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/photo.php b/mod/photo.php index 653ca81c2..4e0b85b45 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -16,7 +16,7 @@ function photo_init(&$a) { return; // NOTREACHED } - if(x($type)) { + if(isset($type)) { switch($type) { case 'profile': @@ -37,7 +37,7 @@ function photo_init(&$a) { if(count($r)) { $data = $r[0]['data']; } - if(x($data) === false) { + if(! isset($data)) { $data = file_get_contents(($resolution == 5) ? 'images/default-profile-sm.jpg' : 'images/default-profile.jpg'); |