diff options
author | Habeas Codice <habeascodice@federated.social> | 2015-01-10 11:08:37 -0800 |
---|---|---|
committer | Habeas Codice <habeascodice@federated.social> | 2015-01-10 11:08:37 -0800 |
commit | 0368fe49f37afee7984609019fb9b67925accf5d (patch) | |
tree | 6dffb2c70f31fb96631c98340ed238e1dc2d69d2 /mod/profile_photo.php | |
parent | 72c0bc1169b65ffa8f7c0e38b39714f59795872b (diff) | |
download | volse-hubzilla-0368fe49f37afee7984609019fb9b67925accf5d.tar.gz volse-hubzilla-0368fe49f37afee7984609019fb9b67925accf5d.tar.bz2 volse-hubzilla-0368fe49f37afee7984609019fb9b67925accf5d.zip |
Fix unescaped image data
Diffstat (limited to 'mod/profile_photo.php')
-rw-r--r-- | mod/profile_photo.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index e9dad6f51..13d3cd756 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -130,6 +130,7 @@ function profile_photo_post(&$a) { if($r) { $base_image = $r[0]; + $base_image['data'] = dbunescbin($base_image['data']); $im = photo_factory($base_image['data'], $base_image['type']); if($im->is_valid()) { |