D* scaled images not containing link to original size

This commit is contained in:
Friendika 2011-11-07 20:41:12 -08:00
parent aeddfa1e0a
commit 9fabdbf2c9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ function scale_diaspora_images($s,$include_link = true) {
$new_height = $ph->getHeight();
logger('scale_diaspora_image: ' . $new_width . 'w ' . $new_height . 'h' . 'match: ' . $mtch[0], LOGGER_DEBUG);
$s = str_replace($mtch[0],'[img=' . $new_width . 'x' . $new_height. ']' . $mtch[1] . '[/img]'
. "\n" . ((! $include_link)
. "\n" . (($include_link)
? '[url=' . $mtch[1] . ']' . t('view full size') . '[/url]' . "\n"
: ''),$s);
logger('scale_diaspora_image: new string: ' . $s, LOGGER_DEBUG);