From: levinse Date: Mon, 21 Feb 2011 06:03:09 +0000 (+0000) Subject: trim whitespace for domain field in svc_domain prov UI, RT11432 X-Git-Tag: freeside_2_3_0~596 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=5c0d47bfe554a35c8906d97b9fabd9999be4f67e trim whitespace for domain field in svc_domain prov UI, RT11432 --- diff --git a/httemplate/edit/process/svc_domain.cgi b/httemplate/edit/process/svc_domain.cgi index 381339bc8..a5c617d83 100755 --- a/httemplate/edit/process/svc_domain.cgi +++ b/httemplate/edit/process/svc_domain.cgi @@ -46,6 +46,11 @@ my $new = new FS::svc_domain ( { } ( fields('svc_domain'), qw( pkgnum svcpart action ) ) } ); +# trim leading and trailing whitespace to avoid errors caused by pasting into UI +my $domain = $new->domain; +$domain =~ s/^\s+|\s+$//g; +$new->domain($domain); + my $error = ''; if ($cgi->param('svcnum')) { $error = $new->replace();