- 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.4.4.x
parent
0d0d72767b
commit
38e89dd03f
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue