diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-24 22:46:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-24 22:46:03 +0000 |
commit | 06045ff7fcd44626185548fc886b9e5e5d7e867e (patch) | |
tree | 6c66903171069010aacbd42f28ee2fa35803d8b5 /modules/taxonomy.module | |
parent | af5bc7cdefa0b6c491feece42d1e0b67a4de19c9 (diff) | |
download | brdo-06045ff7fcd44626185548fc886b9e5e5d7e867e.tar.gz brdo-06045ff7fcd44626185548fc886b9e5e5d7e867e.tar.bz2 |
Patch by Ax to fixe and improve to the core doxygen PHPdoc:
* fixes all doxygen warnings [#]_ in the current code base
+ changes @param style from phpDocumentor (@param type $var desc) to doxygen (@param $var desc)
+ documents all undocumented parameters
+ escapes / fixes html warnings
+ fixes @defgroup in theme.inc
* adds more groupings [#]_
+ drupal_{set|get}_title, drupal_{set|get}_breadcrumb
+ pager.inc: pager_api (pager_query(), pager_display()), pager pieces
* adds a new group "themeable" which contains all themeable functions.
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 135241f43..ca59cae25 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -538,12 +538,12 @@ function _taxonomy_term_children($tid) { } /** - * Try to map a string to existing vocabularies + * Try to map a string to existing vocabularies. * Provide case insensitive and trimmed map so as to * maximize likelihood of successful mapping. * - * @param string $name Name of the vocabulary to search - * @return array array of matching vocabularies, as objects + * @param $name Name of the vocabulary to search + * @return array of matching vocabularies, as objects */ function taxonomy_get_vocabulary_by_name($name) { // LOWER is ANSI SQL-92 @@ -561,8 +561,8 @@ function taxonomy_get_vocabulary_by_name($name) { * Provide case insensitive and trimmed map so as to * maximize likelihood of successful mapping. * - * @param string $name Name of the term to search - * @return array array of matching terms, as objects + * @param name Name of the term to search + * @return rray of matching terms, as objects */ function taxonomy_get_term_by_name($name) { // LOWER is ANSI SQL-92 |