Merge pull request #430 from eMerzh/pg_shared_sabre

Correct quoting error with Sabre connector. Fix critical pg pbms
This commit is contained in:
Thomas Müller 2012-11-15 08:39:05 -08:00
commit 8f501a928a
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr
//remove etag for all Shared folders
$query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties`'
.' WHERE `propertypath` = "/Shared"'
.' WHERE `propertypath` = \'/Shared\' '
);
$query->execute(array());