diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-03-02 05:58:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-03-02 05:58:40 +0000 |
commit | 342ec71963040dd5b3972f555c4886f80f3f2a24 (patch) | |
tree | 604ab10396cdfd6af22cb97d58b292f40cd96d3e /modules/taxonomy/taxonomy.module | |
parent | a730d23d1415a99ba568acdb896d5c2e51882ae4 (diff) | |
download | brdo-342ec71963040dd5b3972f555c4886f80f3f2a24.tar.gz brdo-342ec71963040dd5b3972f555c4886f80f3f2a24.tar.bz2 |
- Patch #226878 by boydjd: fixed coding standards.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 3f7a194c6..c1bc41c34 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -433,7 +433,9 @@ function taxonomy_form_all($free_tags = 0) { $vocabularies = taxonomy_get_vocabularies(); $options = array(); foreach ($vocabularies as $vid => $vocabulary) { - if ($vocabulary->tags && !$free_tags) { continue; } + if ($vocabulary->tags && !$free_tags) { + continue; + } $tree = taxonomy_get_tree($vid); if ($tree && (count($tree) > 0)) { $options[$vocabulary->name] = array(); |