Hi,
the module creates a php script setting $tid and $tname variables from $term->tid and $term->name.
The script crashes if $term->name contains one or more single (or double) quotes.
Solution: substitute this line
$text .= '$tname = ' . "'" . $term->name . "'; ";
with this one
$text .= '$tname = ' . "'" . addslashes($term->name) . "'; ";
making special characters escaped.

many thanks

Comments

Pomliane’s picture

Status: Patch (to be ported) » Closed (won't fix)

This version of Taxonomy Redirect is not supported anymore. The issue is closed for this reason.
Please upgrade to a supported version and feel free to reopen the issue on the new version if applicable.

This issue has been automagically closed by a script.