Fix private member access of parent class in ocsresponse
* noticed while checking PHPDoc
This commit is contained in:
parent
ac133e9faa
commit
1d30efdd73
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ class OCSResponse extends Response {
|
|||
$dimension=-1, $itemscount='',
|
||||
$itemsperpage='') {
|
||||
$this->format = $format;
|
||||
$this->status = $status;
|
||||
$this->setStatus($status);
|
||||
$this->statuscode = $statuscode;
|
||||
$this->message = $message;
|
||||
$this->data = $data;
|
||||
|
@ -89,7 +89,7 @@ class OCSResponse extends Response {
|
|||
|
||||
public function render() {
|
||||
return OC_OCS::generateXml(
|
||||
$this->format, $this->status, $this->statuscode, $this->message,
|
||||
$this->format, $this->getStatus(), $this->statuscode, $this->message,
|
||||
$this->data, $this->tag, $this->tagattribute, $this->dimension,
|
||||
$this->itemscount, $this->itemsperpage
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue