Index: tests/t3lib/matchcondition/t3lib_matchcondition_backendTest.php =================================================================== --- tests/t3lib/matchcondition/t3lib_matchcondition_backendTest.php (revision 9828) +++ tests/t3lib/matchcondition/t3lib_matchcondition_backendTest.php (working copy) @@ -838,7 +838,6 @@ if ($table === $this->testTableName) { return array( 'scope' => $this->testTableName, - 'processed' => false, 'data' => array( 'pid' => 999, ), @@ -855,9 +854,8 @@ * @param mixed $resource * @return mixed */ - public function determinePageIdByRecordDatabaseFetchCallback(&$resource) { - if (is_array($resource) && !$resource['processed'] && $resource['scope'] === $this->testTableName) { - $resource['processed'] = true; + public function determinePageIdByRecordDatabaseFetchCallback($resource) { + if (is_array($resource) && ($resource['scope'] === $this->testTableName)) { return $resource['data']; } else { return FALSE;