diff options
-rw-r--r-- | httemplate/edit/quick-charge.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/quick-charge.html b/httemplate/edit/quick-charge.html index 7b88bcce9..e141e7d22 100644 --- a/httemplate/edit/quick-charge.html +++ b/httemplate/edit/quick-charge.html @@ -459,6 +459,6 @@ if ( $cust_pkg ) { # set defaults } } -my $billed = $cust_pkg->get('setup') ? 1 : 0; +my $billed = ($cust_pkg and $cust_pkg->get('setup')) ? 1 : 0; </%init> |