diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-07-21 00:13:23 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-07-21 00:13:30 +0200 |
commit | 0b338a7a413a3975ac1865e56c70b9c5a668a21f (patch) | |
tree | f04a74b3ca702cb1bd806d058e6113f74c56be42 /lib | |
parent | 14af503374f5667e474de9c7f3762c7624d179a1 (diff) | |
download | nextcloud-server-0b338a7a413a3975ac1865e56c70b9c5a668a21f.tar.gz nextcloud-server-0b338a7a413a3975ac1865e56c70b9c5a668a21f.zip |
Add missing public to function definition
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connector/sabre/node.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 5bb92922f8f..3cb5412f09f 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -179,7 +179,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @param array $properties * @return void */ - function getProperties($properties) { + public function getProperties($properties) { if (is_null($this->property_cache)) { $query = OC_DB::prepare( 'SELECT * FROM *PREFIX*properties WHERE userid = ? AND propertypath = ?' ); $result = $query->execute( array( OC_User::getUser(), $this->path )); |