diff options
-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']); } |