diff options
author | ivan <ivan> | 2002-04-19 01:16:39 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-04-19 01:16:39 +0000 |
commit | 98a73bb080f55f4f5d850102bcec6da2807e3d4f (patch) | |
tree | 960bf3f9117760ee030020a9104b836f69910d43 /fs_signup | |
parent | 6866bdda26d1feb152af991388113e2e9309fafb (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-x | fs_signup/fs_signup_server | 3 |
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' => '' } ) ], |