PDA

View Full Version : Help with Cleaner scrpit



dave683
Mon 18th Aug '08, 6:16am
After I imported SMF forum 2.0 Beta, nearly all the posts are messed up and I need help with using the Clearner script to to fix the display BBcode problems.

How do i use a wild card for quotes that are in this format


text to

[quot e]text [/quote]Images

to

Thanks!!

Jerry
Mon 18th Aug '08, 3:26pm
Line 98 (or around there) of cleaner.php is :



#$text = preg_replace('##siU', '', $text);


Change that for :



$text = preg_replace('#\
(.*)\[/quote\]#siU', '[quote=$1]$3', $text);
$text = preg_replace('#\[img(.*)\]#siU', '[img]', $text);

dave683
Mon 18th Aug '08, 4:59pm
Line 98 (or around there) of cleaner.php is :



#$text = preg_replace('##siU', '', $text);
Change that for :



$text = preg_replace('#\[quote author=(.*) (.*)\](.*)\[/quote\]#siU', '', $text);
$text = preg_replace('#\[img(.*)\]#siU', '[img]', $text);


Thankk you so much! :D