Skip to content

Commit

Permalink
Remove md5() hashing
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude committed Feb 17, 2022
1 parent 0b95b71 commit ac68685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Query/FilterCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public function getHash()
$filterHash .= $name . $filter;
}

$this->filterHash = md5($filterHash);
$this->filterHash = $filterHash;
$this->filtersState = self::FILTERS_STATE_CLEAN;

return $filterHash;
Expand Down

0 comments on commit ac68685

Please sign in to comment.