Skip to content
Snippets Groups Projects
Commit bcd2a1a4 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #600422 by alpritt: fixed WSOD.

parent f1fcfb9f
No related branches found
No related tags found
No related merge requests found
......@@ -831,8 +831,8 @@ protected function buildQuery() {
$this->query->addField('v', 'machine_name', 'vocabulary_machine_name');
}
protected function cacheGet($ids) {
$terms = parent::cacheGet($ids);
protected function cacheGet($ids, $conditions = array()) {
$terms = parent::cacheGet($ids, $conditions);
// Name matching is case insensitive, note that with some collations
// LOWER() and drupal_strtolower() may return different results.
foreach ($terms as $term) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment