OPEN: admin/admin_easymod.php
FIND:
- Code: Select all
$hidden_sql = '<input type="hidden" name="SQL' . $steps . '" value="' . htmlspecialchars($formatted_sql[$i]) . '" />';
REPLACE WITH:
- Code: Select all
$hidden_sql = '<input type="hidden" name="SQL' . $steps . '" value="' . $formatted_sql[$i] . '" />';
Note the line before this one already applied htmlspecialchars to the SQL line.

