Thanks so much :up: This code is perfectly working and didn't create any error.log
Many thanks again
Quote:
Originally Posted by shka
I think
PHP Code:
// Start IMG to URL BBCode Converterif ($this->contains_bbcode_img_tags($message)) { $message = preg_replace_callback( '#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iU', function ($matches) { return $this->handle_bbcode_url(str_replace('"', '"', $matches[1]), ''); }, $message );}// End IMG to URL BBCode Converter
|