Remove single quote from the list of allowable characters.

Remove single quotes from parsed International macros in the template tester.
This commit is contained in:
Colin Kuskie 2008-09-06 21:25:42 +00:00
parent 528c56a499
commit 4dd7dcfe5e
2 changed files with 3 additions and 1 deletions

View file

@ -93,7 +93,7 @@ A string that specifies the language that the user should see. Defaults to the
=cut
my $safeRe = qr/[^\.\w\d\s\/'\^\;\?]/;
my $safeRe = qr/[^\.\w\d\s\/\^\;\?]/;
sub get {
my ($self, $id, $namespace, $language) = @_;