From: Zach Prezkuta Date: Sat, 15 Sep 2012 00:22:56 +0000 (-0600) Subject: fix permissions for uploaded images with size specified X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f445ed47df9d706cb0cfb3d24f1c967f9ae86658;p=friendica.git fix permissions for uploaded images with size specified --- diff --git a/mod/item.php b/mod/item.php index 52ea9d58c9..8fe1c05c12 100644 --- a/mod/item.php +++ b/mod/item.php @@ -373,8 +373,8 @@ function item_post(&$a) { $match = null; - if((! $preview) && preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) { - $images = $match[1]; + if((! $preview) && preg_match_all("/\[img([\=0-9x]*)\](.*?)\[\/img\]/",$body,$match)) { + $images = $match[2]; if(count($images)) { foreach($images as $image) { if(! stristr($image,$a->get_baseurl() . '/photo/'))