diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Oxfordshire.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Oxfordshire.pm b/perllib/FixMyStreet/Cobrand/Oxfordshire.pm index 63e52dc20..b8dc49f72 100644 --- a/perllib/FixMyStreet/Cobrand/Oxfordshire.pm +++ b/perllib/FixMyStreet/Cobrand/Oxfordshire.pm @@ -21,8 +21,8 @@ sub report_validation { $errors->{name} = sprintf( 'Names are limited to %d characters in length.', 50 ); } - if ( length( $report->user->phone ) > 30 ) { - $errors->{phone} = sprintf( 'Phone numbers are limited to %s characters in length.', 30 ); + if ( length( $report->user->phone ) > 20 ) { + $errors->{phone} = sprintf( 'Phone numbers are limited to %s characters in length.', 20 ); } if ( length( $report->user->email ) > 50 ) { |