If a Forum Title has an ampersand (&) in it's name, it's stored in the db using it's unicode ( & ). When I use the following code to put the Forum title in the reported thread, any forums with '&' in the title are showing up as '&'. For instance, We have a 'Media & Popular Culture' forum which is displaying as 'Media & Popular Culture' in the thread title using this code.
PHP Code:
'title' => 'Reported post in : ' . $foruminfo['title'] .' : ' . $threadinfo['title']
I also tried $foruminfo['title_clean'] but I am still encountering the same problem. Any way to fix this?
Matt