Skip to content

Commit

Permalink
Fixed issue in detection of orphaned queue entries
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntimeX committed Feb 27, 2016
1 parent f3404d8 commit 8bf4785
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -358,7 +358,7 @@ public function identifyOrphans() {
$queues[$objectTypeID] = array();
}

$queues[$objectTypeID][$row['queueID']] = $row['objectID'];
$queues[$objectTypeID][$row['objectID']] = $row['queueID'];
}

if (!empty($queues)) {
Expand Down

0 comments on commit 8bf4785

Please sign in to comment.