fix private photos that also have a size specification
This commit is contained in:
parent
88a0d6a1d5
commit
e5a988f0b5
1 changed files with 2 additions and 2 deletions
|
@ -2933,8 +2933,8 @@ function fix_private_photos($s,$uid, $item = null, $cid = 0) {
|
|||
logger('fix_private_photos', LOGGER_DEBUG);
|
||||
$site = substr($a->get_baseurl(),strpos($a->get_baseurl(),'://'));
|
||||
|
||||
if(preg_match("/\[img\](.*?)\[\/img\]/is",$s,$matches)) {
|
||||
$image = $matches[1];
|
||||
if(preg_match("/\[img(.*?)\](.*?)\[\/img\]/is",$s,$matches)) {
|
||||
$image = $matches[2];
|
||||
logger('fix_private_photos: found photo ' . $image, LOGGER_DEBUG);
|
||||
if(stristr($image , $site . '/photo/')) {
|
||||
$replace = false;
|
||||
|
|
Loading…
Reference in a new issue