diff --git a/airtime_mvc/application/controllers/BillingController.php b/airtime_mvc/application/controllers/BillingController.php index 981a398e4..47ef8fa14 100644 --- a/airtime_mvc/application/controllers/BillingController.php +++ b/airtime_mvc/application/controllers/BillingController.php @@ -100,9 +100,11 @@ class BillingController extends Zend_Controller_Action { return; } + //If there were no changes to the plan or billing cycle, we just redirect you to the + //invoices screen and show a message. if (!$placeAnUpgradeOrder) { - $this->_redirect('billing/invoices'); + $this->_redirect('billing/invoices?planupdated'); return; } diff --git a/airtime_mvc/application/views/scripts/billing/invoices.phtml b/airtime_mvc/application/views/scripts/billing/invoices.phtml index d143441cc..4de3cbb25 100644 --- a/airtime_mvc/application/views/scripts/billing/invoices.phtml +++ b/airtime_mvc/application/views/scripts/billing/invoices.phtml @@ -1,6 +1,17 @@