diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-12-12 17:35:58 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-12-12 17:35:58 +0000 |
commit | 2a4b554ca67ba55c75bbff75777285e550dca84f (patch) | |
tree | 2a5a91f2ccdea2bcfe3c91f287e9b856c9bd284d /lib/ocs/config.php | |
parent | 140141edf2c5d89f083b4d254c0533e0209d517b (diff) | |
download | nextcloud-server-2a4b554ca67ba55c75bbff75777285e550dca84f.tar.gz nextcloud-server-2a4b554ca67ba55c75bbff75777285e550dca84f.zip |
API: OCS methods now use OC_OCS_Result to return data
Diffstat (limited to 'lib/ocs/config.php')
-rw-r--r-- | lib/ocs/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ocs/config.php b/lib/ocs/config.php index 06103cbeb4f..eb9e470381a 100644 --- a/lib/ocs/config.php +++ b/lib/ocs/config.php @@ -8,6 +8,6 @@ class OC_OCS_Config { $xml['host'] = OCP\Util::getServerHost(); $xml['contact'] = ''; $xml['ssl'] = 'false'; - return $xml; + return new OC_OCS_Result($xml); } } |