2011-05-23, 08:00 AM
(2011-05-23, 07:36 AM)Yaldaram Wrote:if(strstr($fullurl,!$mybb->settings['bburl']))
This will not work. Why casting a string value to a boolean? Makes no sense at all.
Also strstr() is not the appropriate function to use to check if a string contains another string. You should use strpos() instead.
if(strpos($fullurl,$mybb->settings['bburl']) !== false)