search issue

Use GitHub to post bug reports and error descriptions for phpwcms. Describe your problem detailed!
Locked
creep
Posts: 10
Joined: Tue 28. Dec 2004, 15:53

search issue

Post by creep »

serch result cant showing correctly when i use HTML link inside article text

in function clean_replacement_tags

Code: Select all

$text = strip_tags($text, '<a><b><i><u>');
is probably like

Code: Select all

$text = strip_tags($text, '<b><i><u>');
because <a> html tag not exist, existing tag <a href="">
Locked