yes, i did ...i changed the code in the bbcode.php
i was follow the teaching guide in [教學] section.....topic is ([問題]有關BBcode標籤"img"的問題~~已解決)
代碼: 選擇全部
原有版本bbcode.php,v 1.36.2.11 (phpBB 2.0.3)
// [img]image_url_here[/img] code..
$text = preg_replace("#\[img\](http(s)?://)([a-z0-9\-\.,\?!%\*_\#:;~\\\&$@\/=\+]+)\[/img\]#si", "[img:$uid]\\\1\\\3[/img:$uid]", $text);
置換為
取自bbcode.php,v 1.36.2.27 (phpBB 2.0.6)
// [img]image_url_here[/img] code..
$text = preg_replace("#\[img\]((ht|f)tp://)([^
\t<\"]*?)\[/img\]#sie", "'[img:$uid]\\\1' . str_replace(' ', '%20', '\\\3') . '[/img:$uid]'", $text);