From 38e89dd03f0d5337edac9c531e2d03355bc85c5a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 10 Feb 2004 19:28:39 +0000 Subject: [PATCH] - Patch 5775 by Goba: fixes the only error currently reported by the doxygen parser in Drupal core, plus fixes some errorneous (copy-pasted) doxygen docs. --- includes/theme.inc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/includes/theme.inc b/includes/theme.inc index 2fa1cc6e676..ccdfd08e12c 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -270,7 +270,7 @@ function theme_node($node, $main = 0, $page = 0) { * @param $description the form element's description or explanation * @param $id the form element's ID used by the <label> tag * - * @return a string containing the @a node output. + * @return a string representing the form element */ function theme_form_element($title, $value, $description = NULL, $id = NULL) { @@ -300,10 +300,11 @@ function theme_form_element($title, $value, $description = NULL, $id = NULL) { /** * Returns themed table. * - * @param $header - * @param $rows + * @param $header array of table header strings + * @param $rows array of arrays containing the table cells + * @param $attributes attribute array for the table tag * - * @return a string containing the @a node output. + * @return a string representing the table. */ function theme_table($header, $rows, $attributes = NULL) {