diff options
author | Max Kostikov <max@kostikov.co> | 2019-05-08 10:40:46 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-05-08 10:40:46 +0200 |
commit | d34d14c1f463404b28898d398a4d37436fa3c856 (patch) | |
tree | eb1b9d823fef555a3382d895b56a162a70927e46 | |
parent | 6731564c2d71475435fd83fa8c63dd8d45f1ad34 (diff) | |
download | volse-hubzilla-d34d14c1f463404b28898d398a4d37436fa3c856.tar.gz volse-hubzilla-d34d14c1f463404b28898d398a4d37436fa3c856.tar.bz2 volse-hubzilla-d34d14c1f463404b28898d398a4d37436fa3c856.zip |
Replace own image URL in clonned channel posts
-rw-r--r-- | include/text.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/text.php b/include/text.php index 276264162..3e2b72087 100644 --- a/include/text.php +++ b/include/text.php @@ -3081,13 +3081,12 @@ function item_url_replace($channel,&$item,$old,$new,$oldnick = '') { if($oldnick) json_url_replace('/' . $oldnick . '/' ,'/' . $channel['channel_address'] . '/' ,$item['target']); } + + $item['body'] = preg_replace("/(\[zrl=".preg_quote($old,'/')."\/photos\/".$channel['channel_address'].".+\]\[zmg=\d+x\d+\])".preg_quote($old,'/')."\/(.+\[\/zmg\])/", '${1}'.$new.'/${2}', $item['body']); + $item['body'] = preg_replace("/".preg_quote($old,'/')."\/(search|\w+\/".$channel['channel_address'].")/", $new.'/${1}', $item['body']); - $x = preg_replace("/".preg_quote($old,'/')."\/(search|\w+\/".$channel['channel_address'].")/", $new.'/${1}', $item['body']); - if($x) { - $item['body'] = $x; - $item['sig'] = base64url_encode(rsa_sign($item['body'],$channel['channel_prvkey'])); - $item['item_verified'] = 1; - } + $item['sig'] = base64url_encode(rsa_sign($item['body'],$channel['channel_prvkey'])); + $item['item_verified'] = 1; $item['plink'] = str_replace($old,$new,$item['plink']); if($oldnick) |