diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-07-10 15:36:08 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-07-10 15:36:08 +0200 |
commit | f0602ec2f4c2234f1763aee2bd3e9062a65eaae4 (patch) | |
tree | d4730352c5772806d3fd949c92cd2b5ed09fecf0 | |
parent | 40e2432fffb2ee29e068288bfebc1eaaf964d08b (diff) | |
download | volse-hz-addons-f0602ec2f4c2234f1763aee2bd3e9062a65eaae4.tar.gz volse-hz-addons-f0602ec2f4c2234f1763aee2bd3e9062a65eaae4.tar.bz2 volse-hz-addons-f0602ec2f4c2234f1763aee2bd3e9062a65eaae4.zip |
unshorturl: Include post body to do replacement in
-rw-r--r-- | unshorturl/unshorturl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unshorturl/unshorturl.php b/unshorturl/unshorturl.php index abd2779..8b4e3be 100644 --- a/unshorturl/unshorturl.php +++ b/unshorturl/unshorturl.php @@ -27,5 +27,5 @@ function unshorturl_prepare_body(&$body) { return; } - preg_replace('/https?:\/\/bit.ly\/[^\s]+/g', '[hidden bitly link]'); + preg_replace('/https?:\/\/bit.ly\/[^\s]+/g', '[hidden bitly link]', $body['html']); } |