Invoice view bugfix
This commit is contained in:
parent
d785d92953
commit
fe0485e66b
|
@ -369,7 +369,7 @@ class BillingController extends Zend_Controller_Action {
|
||||||
$postfields["password"] = md5($credentials["password"]);
|
$postfields["password"] = md5($credentials["password"]);
|
||||||
$postfields["action"] = "getinvoices";
|
$postfields["action"] = "getinvoices";
|
||||||
$postfields["responsetype"] = "json";
|
$postfields["responsetype"] = "json";
|
||||||
$postfields["clientid"] = Application_Model_Preference::GetClientId();
|
$postfields["userid"] = Application_Model_Preference::GetClientId();
|
||||||
|
|
||||||
$query_string = "";
|
$query_string = "";
|
||||||
foreach ($postfields AS $k=>$v) $query_string .= "$k=".urlencode($v)."&";
|
foreach ($postfields AS $k=>$v) $query_string .= "$k=".urlencode($v)."&";
|
||||||
|
|
Loading…
Reference in New Issue