Show form on billing page if no invoice was generated after downgrade

This commit is contained in:
drigato 2015-07-31 11:56:00 -04:00
parent 278ca264eb
commit aab4b634bf
1 changed files with 2 additions and 0 deletions

View File

@ -169,6 +169,8 @@ class BillingController extends Zend_Controller_Action {
// owe any money
if (!empty($result["invoiceid"])) {
self::viewInvoice($result["invoiceid"]);
} else {
$this->view->form = $form;
}
}
} else {