Commit bd1aca3c authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #206 in ZP/z-push from...

Merge pull request #206 in ZP/z-push from bugfix/ZP-871-integer-folderids-may-falsly-trigger to develop

* commit '7726df9e':
  ZP-871 Invalidate the pingable flags where they are set.
parents 7e80038d 7726df9e
...@@ -86,7 +86,10 @@ class SyncCollections implements Iterator { ...@@ -86,7 +86,10 @@ class SyncCollections implements Iterator {
$sc = new SyncCollections(); $sc = new SyncCollections();
$sc->LoadAllCollections(); $sc->LoadAllCollections();
foreach ($sc as $folderid => $spa) { foreach ($sc as $folderid => $spa) {
$sc->invalidateFolderStat($spa); if ($spa->GetPingableFlag() == true) {
$spa->DelPingableFlag();
$sc->SaveCollection($spa);
}
} }
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment