Skip to content

Commit

Permalink
[com_finder] Error in reindex when category access change
Browse files Browse the repository at this point in the history
When the category access change it was reindex with the category id instead of the item id.
  • Loading branch information
miguelbgouveia committed Mar 8, 2016
1 parent 2cbe712 commit cd5ee81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ protected function categoryAccessChange($row)
$this->change((int) $item->id, 'access', $temp);

// Reindex the item
$this->reindex($row->id);
$this->reindex($item->id);
}
}

Expand Down

0 comments on commit cd5ee81

Please sign in to comment.