diff options
author | ivan <ivan> | 2008-12-21 21:49:47 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-12-21 21:49:47 +0000 |
commit | 7b03a9e112d4c951d5124f48d6fdd87ec333f4f9 (patch) | |
tree | dbde2d2f9215cb2ecd4da33246330cbf82f8eeea | |
parent | 3519f0b249ffd4fbe189857a9b19fd9b7690b49d (diff) |
svc_acct.pm bogosity too, wtf?!, RT#4204
-rw-r--r-- | FS/FS/svc_acct.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index d59ee5ee3..2fc3d766f 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -249,7 +249,8 @@ sub table_info { label => 'Shell', def_label=> 'Shell (set to blank for no shell tracking)', type =>'select', - select_list => [ $conf->config('shells') ], + #select_list => [ $conf->config('shells') ], + select_list => [ $conf ? $conf->config('shells') : () ], disable_inventory => 1, disable_select => 1, }, |