diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-04 15:54:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-04 15:54:37 +0000 |
commit | 92341bdf40e715beb923824f10ac989fa6597512 (patch) | |
tree | 87eac9d8643d1439ba744e76eaabb7832e180a06 /modules/simpletest | |
parent | 0b6e0b605ca0047e74428a72c96e819dd10392de (diff) | |
download | brdo-92341bdf40e715beb923824f10ac989fa6597512.tar.gz brdo-92341bdf40e715beb923824f10ac989fa6597512.tar.bz2 |
- Patch #471744 by jhodgdon: remove stray references from hook_taxonomy_term_load() parameters.
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/tests/taxonomy_test.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/taxonomy_test.module b/modules/simpletest/tests/taxonomy_test.module index 536e5a100..fd34f9caf 100644 --- a/modules/simpletest/tests/taxonomy_test.module +++ b/modules/simpletest/tests/taxonomy_test.module @@ -9,7 +9,7 @@ /** * Implement hook_taxonomy_term_load(). */ -function taxonomy_test_taxonomy_term_load(&$terms) { +function taxonomy_test_taxonomy_term_load($terms) { foreach ($terms as $term) { $antonym = taxonomy_test_get_antonym($term->tid); if ($antonym) { |