Browse Source

coding style

tags/v6.0.0alpha2
Thomas Mueller 11 years ago
parent
commit
5c7d7549ea
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      lib/connector/sabre/locks.php

+ 4
- 1
lib/connector/sabre/locks.php View File

@@ -126,7 +126,10 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract {
$locks = $this->getLocks($uri, false);
$exists = false;
foreach($locks as $lock) {
if ($lock->token == $lockInfo->token) $exists = true;
if ($lock->token == $lockInfo->token) {
$exists = true;
break;
}
}

if ($exists) {

Loading…
Cancel
Save