summaryrefslogtreecommitdiff
path: root/fs_signup
diff options
context:
space:
mode:
authorivan <ivan>2002-04-19 01:16:39 +0000
committerivan <ivan>2002-04-19 01:16:39 +0000
commit98a73bb080f55f4f5d850102bcec6da2807e3d4f (patch)
tree960bf3f9117760ee030020a9104b836f69910d43 /fs_signup
parent6866bdda26d1feb152af991388113e2e9309fafb (diff)
- add init file installation to Makefile, add unified init file
- fix qsearch for op => '!=', value => '' searches - fix invalid_catd typo - add payby method to part_pkg and have fs_signup_server pass the data
Diffstat (limited to 'fs_signup')
-rwxr-xr-xfs_signup/fs_signup_server3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs_signup/fs_signup_server b/fs_signup/fs_signup_server
index 4abdafc46..1618cf1fe 100755
--- a/fs_signup/fs_signup_server
+++ b/fs_signup/fs_signup_server
@@ -67,7 +67,8 @@ while (1) {
'part_pkg' =>
[
- map { $_->hashref }
+ #map { $_->hashref }
+ map { { 'payby' => [ $_->payby ], %{$_->hashref} } }
grep { $_->svcpart('svc_acct') && $pkgpart_href->{ $_->pkgpart } }
qsearch( 'part_pkg', { 'disabled' => '' } )
],