From 06045ff7fcd44626185548fc886b9e5e5d7e867e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 24 Nov 2003 22:46:03 +0000 Subject: 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. --- modules/taxonomy.module | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/taxonomy.module') 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 -- cgit v1.2.3