summaryrefslogtreecommitdiff
path: root/htdocs
diff options
context:
space:
mode:
authorivan <ivan>1999-04-07 15:24:06 +0000
committerivan <ivan>1999-04-07 15:24:06 +0000
commit4ad9c02763c02067fe53cd994b2a75468f280bf0 (patch)
tree4bbcd4283f736b7f81ab7be8706e72ce83514639 /htdocs
parent35efa918b163f10c1bdcc70087653f8be00b3bc5 (diff)
don't use anchor in redirect
Diffstat (limited to 'htdocs')
-rwxr-xr-xhtdocs/edit/process/cust_credit.cgi9
-rwxr-xr-xhtdocs/edit/process/cust_main.cgi9
-rwxr-xr-xhtdocs/edit/process/cust_pkg.cgi9
3 files changed, 18 insertions, 9 deletions
diff --git a/htdocs/edit/process/cust_credit.cgi b/htdocs/edit/process/cust_credit.cgi
index 0b3cb54db..ea9c5a3a2 100755
--- a/htdocs/edit/process/cust_credit.cgi
+++ b/htdocs/edit/process/cust_credit.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: cust_credit.cgi,v 1.6 1999-02-28 00:03:41 ivan Exp $
+# $Id: cust_credit.cgi,v 1.7 1999-04-07 15:23:05 ivan Exp $
#
# Usage: post form to:
# http://server.name/path/cust_credit.cgi
@@ -20,7 +20,10 @@
# bmccane@maxbaud.net 98-apr-3
#
# $Log: cust_credit.cgi,v $
-# Revision 1.6 1999-02-28 00:03:41 ivan
+# Revision 1.7 1999-04-07 15:23:05 ivan
+# don't use anchor in redirect
+#
+# Revision 1.6 1999/02/28 00:03:41 ivan
# removed misleading comments
#
# Revision 1.5 1999/01/25 12:09:59 ivan
@@ -67,7 +70,7 @@ if ( $error ) {
$cgi->param('error', $error);
print $cgi->redirect(popurl(2). "cust_credit.cgi?". $cgi->query_string );
} else {
- print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum#history");
+ print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
}
diff --git a/htdocs/edit/process/cust_main.cgi b/htdocs/edit/process/cust_main.cgi
index 2eb1c19e3..729bed7c4 100755
--- a/htdocs/edit/process/cust_main.cgi
+++ b/htdocs/edit/process/cust_main.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: cust_main.cgi,v 1.8 1999-03-25 13:55:10 ivan Exp $
+# $Id: cust_main.cgi,v 1.9 1999-04-07 15:22:19 ivan Exp $
#
# Usage: post form to:
# http://server.name/path/cust_main.cgi
@@ -20,7 +20,10 @@
# bmccane@maxbaud.net 98-apr-3
#
# $Log: cust_main.cgi,v $
-# Revision 1.8 1999-03-25 13:55:10 ivan
+# Revision 1.9 1999-04-07 15:22:19 ivan
+# don't use anchor in redirect
+#
+# Revision 1.8 1999/03/25 13:55:10 ivan
# one-screen new customer entry (including package and service) for simple
# packages with one svc_acct service
#
@@ -174,5 +177,5 @@ if ( $error ) {
} else {
$new->invoicing_list( \@invoicing_list );
$custnum = $new->custnum;
- print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum#cust_main");
+ print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
}
diff --git a/htdocs/edit/process/cust_pkg.cgi b/htdocs/edit/process/cust_pkg.cgi
index 437569fb4..9d82b3c24 100755
--- a/htdocs/edit/process/cust_pkg.cgi
+++ b/htdocs/edit/process/cust_pkg.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: cust_pkg.cgi,v 1.6 1999-02-28 00:03:44 ivan Exp $
+# $Id: cust_pkg.cgi,v 1.7 1999-04-07 15:24:06 ivan Exp $
#
# this is for changing packages around, not for editing things within the
# package
@@ -19,7 +19,10 @@
# bmccane@maxbaud.net 98-apr-3
#
# $Log: cust_pkg.cgi,v $
-# Revision 1.6 1999-02-28 00:03:44 ivan
+# Revision 1.7 1999-04-07 15:24:06 ivan
+# don't use anchor in redirect
+#
+# Revision 1.6 1999/02/28 00:03:44 ivan
# removed misleading comments
#
# Revision 1.5 1999/02/07 09:59:26 ivan
@@ -72,6 +75,6 @@ if ($error) {
$cgi->param('error', $error);
print $cgi->redirect(popurl(2). "cust_pkg.cgi?". $cgi->query_string );
} else {
- print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum#cust_pkg");
+ print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
}