From d34c0d91cd3d7640626a1b2325c4ae9d3419afbf Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Thu, 26 Jun 2014 18:03:40 -0400 Subject: [PATCH] Invoice view bugfix --- airtime_mvc/application/controllers/BillingController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/BillingController.php b/airtime_mvc/application/controllers/BillingController.php index b816c7e56..bebf89d8b 100644 --- a/airtime_mvc/application/controllers/BillingController.php +++ b/airtime_mvc/application/controllers/BillingController.php @@ -369,7 +369,7 @@ class BillingController extends Zend_Controller_Action { $postfields["password"] = md5($credentials["password"]); $postfields["action"] = "getinvoices"; $postfields["responsetype"] = "json"; - $postfields["clientid"] = Application_Model_Preference::GetClientId(); + $postfields["userid"] = Application_Model_Preference::GetClientId(); $query_string = ""; foreach ($postfields AS $k=>$v) $query_string .= "$k=".urlencode($v)."&";