diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index d7650ae9f..4540efc74 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -831,8 +831,8 @@ class TaxonomyTermController extends DrupalDefaultEntityController { $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) { |