aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-05-11 15:40:04 +0200
committerMax Kostikov <max@kostikov.co>2019-05-11 15:40:04 +0200
commit0e4acf6299e8984bb8d66c315917078e437a950b (patch)
treeba6a515dd959457b77ae4488bbe74260f5b60818 /include/text.php
parent62336127e311bcbe0ad1a8852d9e63101759e649 (diff)
downloadvolse-hubzilla-0e4acf6299e8984bb8d66c315917078e437a950b.tar.gz
volse-hubzilla-0e4acf6299e8984bb8d66c315917078e437a950b.tar.bz2
volse-hubzilla-0e4acf6299e8984bb8d66c315917078e437a950b.zip
Replace photo URL for gallery on clonned channel post sync
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 3e2b72087..a5663fc56 100644
--- a/include/text.php
+++ b/include/text.php
@@ -3082,7 +3082,7 @@ function item_url_replace($channel,&$item,$old,$new,$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("/(\[zrl=".preg_quote($old,'/')."\/(photos|gallery)\/".$channel['channel_address'].".+\]\[zmg=\d+x\d+\])".preg_quote($old,'/')."\/(.+\[\/zmg\])/", '${1}'.$new.'/${3}', $item['body']);
$item['body'] = preg_replace("/".preg_quote($old,'/')."\/(search|\w+\/".$channel['channel_address'].")/", $new.'/${1}', $item['body']);
$item['sig'] = base64url_encode(rsa_sign($item['body'],$channel['channel_prvkey']));