summaryrefslogtreecommitdiff
path: root/htdocs/edit/process/svc_domain.cgi
diff options
context:
space:
mode:
authorivan <ivan>2001-04-23 07:12:44 +0000
committerivan <ivan>2001-04-23 07:12:44 +0000
commit0b9841bf3fea52f423242313afc2cc058d6e6a46 (patch)
tree2915155134c41ea1042215aae7d659f79613ca1b /htdocs/edit/process/svc_domain.cgi
parent1c14b1faec0f3f07a6d4190cf535b3ddb45075ce (diff)
better error message (if kludgy) for no referral
remove outdated NSI foo from domain ordering. also, fuck NSI.
Diffstat (limited to 'htdocs/edit/process/svc_domain.cgi')
-rwxr-xr-xhtdocs/edit/process/svc_domain.cgi14
1 files changed, 7 insertions, 7 deletions
diff --git a/htdocs/edit/process/svc_domain.cgi b/htdocs/edit/process/svc_domain.cgi
index e12aa1b55..ad1892dd1 100755
--- a/htdocs/edit/process/svc_domain.cgi
+++ b/htdocs/edit/process/svc_domain.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: svc_domain.cgi,v 1.6 1999-02-28 00:03:47 ivan Exp $
+# $Id: svc_domain.cgi,v 1.7 2001-04-23 07:12:44 ivan Exp $
#
# Usage: post form to:
# http://server.name/path/svc_domain.cgi
@@ -18,7 +18,11 @@
# bmccane@maxbaud.net 98-apr-3
#
# $Log: svc_domain.cgi,v $
-# Revision 1.6 1999-02-28 00:03:47 ivan
+# Revision 1.7 2001-04-23 07:12:44 ivan
+# better error message (if kludgy) for no referral
+# remove outdated NSI foo from domain ordering. also, fuck NSI.
+#
+# Revision 1.6 1999/02/28 00:03:47 ivan
# removed misleading comments
#
# Revision 1.5 1999/02/07 09:59:33 ivan
@@ -60,11 +64,7 @@ $new = new FS::svc_domain ( {
} ( fields('svc_domain'), qw( pkgnum svcpart action purpose ) )
} );
-if ($cgi->param('legal') ne "Yes") {
- $error = "Customer did not agree to be bound by NSI's ".
- qq!<A HREF="http://rs.internic.net/help/agreement.txt">!.
- "Domain Name Resgistration Agreement</A>";
-} elsif ($cgi->param('svcnum')) {
+if ($cgi->param('svcnum')) {
$error="Can't modify a domain!";
} else {
$error=$new->insert;