diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-11-28 10:29:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-11-28 10:29:21 +0000 |
commit | 7a47bef51436381e4c41a9d291f0eb9b88e63474 (patch) | |
tree | 9e0a0d268f6ab1f49ebe0f5dda8ddb12040fb8f8 /modules/taxonomy/taxonomy.module | |
parent | 673aba159b039568b93b015c5c8b97a71ec530f6 (diff) | |
download | brdo-7a47bef51436381e4c41a9d291f0eb9b88e63474.tar.gz brdo-7a47bef51436381e4c41a9d291f0eb9b88e63474.tar.bz2 |
- Patch #162381 by Heine et al: properly escape strings.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-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 0857e169b..dd203c2e3 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -250,14 +250,14 @@ function taxonomy_del_vocabulary($vid) { /** * Dynamicly check and update the hierarachy flag of a vocabulary. - * + * * Checks the current parents of all terms in a vocabulary and updates the * vocabularies hierarchy setting to the lowest possible level. A hierarchy with * no parents in any of its terms will be given a hierarchy of 0. If terms * contain at most a single parent, the vocabulary will be given a hierarchy of * 1. If any term contain multiple parents, the vocabulary will be given a * hieararchy of 2. - * + * * @param $vocabulary * An array of the vocabulary structure. * @param $changed_term |