mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix webdav property name compare
This commit is contained in:
parent
27efdbd58f
commit
463a506fcb
1 changed files with 1 additions and 1 deletions
|
|
@ -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 )){
|
||||
|
|
|
|||
Loading…
Reference in a new issue