summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-02-10 19:28:39 +0000
committerDries Buytaert <dries@buytaert.net>2004-02-10 19:28:39 +0000
commit38e89dd03f0d5337edac9c531e2d03355bc85c5a (patch)
tree7d2680818eaba01a1a300f7b82e9b91f8a70eea4
parent0d0d72767be0b34ab1b42d9646557b4e411b0a7a (diff)
downloadbrdo-38e89dd03f0d5337edac9c531e2d03355bc85c5a.tar.gz
brdo-38e89dd03f0d5337edac9c531e2d03355bc85c5a.tar.bz2
- 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.
-rw-r--r--includes/theme.inc9
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 &lt;label&gt; 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) {