diff options
author | friendica <info@friendica.com> | 2012-05-28 16:51:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-28 16:51:52 -0700 |
commit | f033c9a4ae822bf2ad46f1885a80daf85eca2f62 (patch) | |
tree | 1fc8903d22789977bac7fcfd0cd01964f38e9736 /include | |
parent | 6962989e52f0ce442fbb3e59992eeb528faa12da (diff) | |
download | volse-hubzilla-f033c9a4ae822bf2ad46f1885a80daf85eca2f62.tar.gz volse-hubzilla-f033c9a4ae822bf2ad46f1885a80daf85eca2f62.tar.bz2 volse-hubzilla-f033c9a4ae822bf2ad46f1885a80daf85eca2f62.zip |
rev update
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index f45b40cc0..66e111b55 100644 --- a/include/items.php +++ b/include/items.php @@ -2980,12 +2980,12 @@ function fix_private_photos($s,$uid, $item = null, $cid = 0) { } } if($replace) { - logger('replacing photo'); + logger('fix_private_photos: replacing photo', LOGGER_DEBUG); $s = str_replace($image, 'data:image/jpg;base64,' . base64_encode($r[0]['data']), $s); + logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA); } } } - logger('fix_private_photos: replaced: ' . $s, LOGGER_DATA); } } return($s); |