Add missing public to function definition

This commit is contained in:
Bart Visscher 2012-07-21 00:13:23 +02:00
parent 14af503374
commit 0b338a7a41
1 changed files with 1 additions and 1 deletions

View File

@ -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 ));