Browse Source

Fix webdav property name compare

remotes/origin/stable4
Bart Visscher 14 years ago
parent
commit
0524f6fd3c
  1. 2
      lib/connector/sabre/node.php

2
lib/connector/sabre/node.php

@ -129,7 +129,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 )){

Loading…
Cancel
Save