Invoice view bugfix

This commit is contained in:
Albert Santoni 2014-06-26 18:03:40 -04:00
parent d785d92953
commit fe0485e66b
1 changed files with 1 additions and 1 deletions

View File

@ -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)."&";