diff options
-rw-r--r-- | includes/theme.inc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 2fa1cc6e6..ccdfd08e1 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) { |