Use preg_quote instead of str_replace in include/items
This commit is contained in:
parent
5e1ceb57de
commit
ea1946ec03
|
@ -203,8 +203,7 @@ function add_page_info_to_body($body, $texturl = false, $no_photos = false)
|
||||||
$body = $removedlink;
|
$body = $removedlink;
|
||||||
}
|
}
|
||||||
|
|
||||||
$url = str_replace(['/', '.'], ['\/', '\.'], $matches[1]);
|
$removedlink = preg_replace("/\[url\=" . preg_quote($matches[1], '/') . "\](.*?)\[\/url\]/ism", '', $body);
|
||||||
$removedlink = preg_replace("/\[url\=" . $url . "\](.*?)\[\/url\]/ism", '', $body);
|
|
||||||
if (($removedlink == "") || strstr($body, $removedlink)) {
|
if (($removedlink == "") || strstr($body, $removedlink)) {
|
||||||
$body = $removedlink;
|
$body = $removedlink;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user