coding style
This commit is contained in:
parent
471b9c055a
commit
5c7d7549ea
|
@ -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…
Reference in New Issue