Topic: Valid Amps
PART 1:
open ./inc/options.mdu
find:
$$template = preg_replace("/</","<",$$template);
$$template = preg_replace("/>/",">",$$template);
replace with:
$$template = htmlspecialchars($$template);
Credit to Stealtheye for Part 1
PART 2:
open ./inc/shows.inc.php
find: (NOTE: there should be 3 of these)
echo $output;
add above: (NOTE: add this above ALL 3)
// Valid Amps
$output = str_replace("&","&", $output);
$output = str_replace("&","&", $output);
// Valid Amps