Skip to content

Commit

Permalink
Fix reveresed logic.
Browse files Browse the repository at this point in the history
Related to Bug: 13781
  • Loading branch information
mrubinsk committed Jan 7, 2015
1 parent be0752d commit 9d1c3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php
Expand Up @@ -437,7 +437,7 @@ public function addCollection(array $collection)
*/
public function removeCollection($id, $purge = true)
{
if (!$purge) {
if ($purge) {
$this->_logger->info(sprintf(
'[%s] Removing collection %s from SyncCache.',
$this->_procid, $id)
Expand Down

0 comments on commit 9d1c3c3

Please sign in to comment.