summaryrefslogtreecommitdiff
path: root/FS/FS/Record.pm
diff options
context:
space:
mode:
authorivan <ivan>2011-10-15 23:15:52 +0000
committerivan <ivan>2011-10-15 23:15:52 +0000
commit73aa1997599d7e079f94ae984509e7a116a2ce46 (patch)
tree8a883f40668b5fc5dba5f709bcfafcaea8584209 /FS/FS/Record.pm
parent5ea2ba2a9cc39bb4671664c3385d15a1d0c46ac6 (diff)
tokyo fix, RT#12981
Diffstat (limited to 'FS/FS/Record.pm')
-rw-r--r--FS/FS/Record.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm
index 9596a30b6..ed0282943 100644
--- a/FS/FS/Record.pm
+++ b/FS/FS/Record.pm
@@ -2076,7 +2076,7 @@ sub ut_text {
#warn "notexist ". \&notexist. "\n";
#warn "AUTOLOAD ". \&AUTOLOAD. "\n";
$self->getfield($field)
- =~ /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=\[\]\<\>$money_char]+)$/
+ =~ /^([\wô \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=\[\]\<\>$money_char]+)$/
or return gettext('illegal_or_empty_text'). " $field: ".
$self->getfield($field);
$self->setfield($field,$1);
@@ -2086,7 +2086,7 @@ sub ut_text {
=item ut_textn COLUMN
Check/untaint text. Alphanumerics, spaces, and the following punctuation
-symbols are currently permitted: ! @ # $ % & ( ) - + ; : ' " , . ? /
+symbols are currently permitted: ! @ # $ % & ( ) - + ; : ' " , . ? / = [ ] < >
May be null. If there is an error, returns the error, otherwise returns false.
=cut