Skip to content
Snippets Groups Projects
Commit 463a506f authored by Bart Visscher's avatar Bart Visscher
Browse files

Fix webdav property name compare

parent 27efdbd5
Branches
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr
}
}
else {
if( strcmp( $propertyName, "lastmodified")) {
if( strcmp( $propertyName, "lastmodified") === 0) {
$this->touch($propertyValue);
} else {
if(!array_key_exists( $propertyName, $existing )){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment