The hyphen would be removed by tapestry_normalise() however it would be no problem in the case of a voucher: query to re-normalise using the regexp only with the hyphen permitted - to do this edit search.php and look for the following code at line 171:
case "voucher":
...and REPLACE with:
case "voucher":
$q = preg_replace('/[^'.$config_normaliseRegExp.'\-:]/','',$_GET["q"]);
$parts = explode(":",$q);
Hi,
The hyphen would be removed by tapestry_normalise() however it would be no problem in the case of a voucher: query to re-normalise using the regexp only with the hyphen permitted - to do this edit search.php and look for the following code at line 171:
case "voucher":
...and REPLACE with:
case "voucher":
$q = preg_replace('/[^'.$config_normaliseRegExp.'\-:]/','',$_GET["q"]);
$parts = explode(":",$q);
Cheers,
David.
--
PriceTapestry.com