View Single Post
Found it!!!!!!!
Old
  (#16 (permalink))
RottenZombie
Junior Member
 
Status: Offline
Posts: 11
Join Date: Oct 2005
Location: Chicago
Found it!!!!!!! - 01-06-2006, 02:45 AM

Over at Nukecops.com I found the following post by "mtalley887", I did what he said and it works like a charm!

Quote:
Here's the fix for your problem guys.

Open up your PHPNuke 7.5 modules/Reviews index.php file and go to first line 170 and find this:

Code:
$text = stripslashes(check_html($text, ""));
Comment this line out and add the following line so it looks like this:

Code:
#$text = stripslashes(check_html($text, ""));
$text = stripslashes($text);
Then go to line 283 and find the following line:

Code:
$text = htmlspecialchars(stripslashes(Fixquotes(urldecode(check_html($text, "")))));
Comment this line out and add the following below it so it looks like this:

Code:
#$text = htmlspecialchars(stripslashes(Fixquotes(urldecode(check_html($text, "")))));
$text = stripslashes(Fixquotes(urldecode(check_html($text, ""))));
That's it..now your html tags won't show, they will be active, you'll be able to show images, etc.

Michael
Kodetech.com
   
Reply With Quote