Merge pull request #1623 from owncloud/ledfan_underscores

Add 2 underscoed instead of none
This commit is contained in:
Robin McCorkell
2015-09-01 15:28:39 +01:00

View File

@@ -542,7 +542,7 @@ Creating a custom XMLResponse class could look like this:
private $xml;
public function construct(array $xml) {
public function __construct(array $xml) {
$this->addHeader('Content-Type', 'application/xml');
$this->xml = $xml;
}