diff options
author | rsiddall <rsiddall> | 2009-05-15 19:41:34 +0000 |
---|---|---|
committer | rsiddall <rsiddall> | 2009-05-15 19:41:34 +0000 |
commit | ad84bf7cfdb56aa1fe268ea315b7a2f7dd768db2 (patch) | |
tree | 22715493769195be6ba6672162ac6283801fb08a /httemplate/edit/process/svc_domain.cgi | |
parent | 5f675c352a10f555de5831bb76ab00b35b6b9bd1 (diff) |
Simple domain registration at Tucows OpenSRS using an export based on Net::OpenSRS.
When a domain is added and the export runs, it will register the domain or
initiate a transfer. You can also choose no action.
There's currently no provision for revoking domains or renewing
registrations.
Depending on the settings at OpenSRS, orders may look like they've succeeded
in Freeside but actually be queued pending input by the reseller at OpenSRS.
The part_export CGIs were modified to allow a multi-valued select to be used
to control which TLDs are enabled for registration.
Diffstat (limited to 'httemplate/edit/process/svc_domain.cgi')
-rwxr-xr-x | httemplate/edit/process/svc_domain.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/process/svc_domain.cgi b/httemplate/edit/process/svc_domain.cgi index 9993a879e..59b518097 100755 --- a/httemplate/edit/process/svc_domain.cgi +++ b/httemplate/edit/process/svc_domain.cgi @@ -18,8 +18,8 @@ my $svcnum = $1; my $new = new FS::svc_domain ( { map { $_, scalar($cgi->param($_)); - #} qw(svcnum pkgnum svcpart domain action purpose) - } ( fields('svc_domain'), qw( pkgnum svcpart action purpose ) ) + #} qw(svcnum pkgnum svcpart domain action) + } ( fields('svc_domain'), qw( pkgnum svcpart action ) ) } ); my $error = ''; |