diff options
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc index 2c8ce54b1..4ea42b449 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -3,7 +3,6 @@ /** * @file - * * Common functions that many Drupal modules will need to reference. * * The functions that are critical and need to be available even when serving @@ -760,7 +759,10 @@ function search_type($type, $action = NULL, $keys = NULL, $options = NULL) { return search_form($action, $keys, $options) . '<br />'. search_data($keys); } -/* @} */ + +/** + * @} end of defgroup search + */ function check_form($text) { return drupal_specialchars($text, ENT_QUOTES); @@ -1004,6 +1006,8 @@ function format_name($object) { /** * @defgroup form Form generation * @{ + * + * */ /** @@ -1446,7 +1450,10 @@ function form_weight($title = NULL, $name = 'weight', $value = 0, $delta = 10, $ return form_select($title, $name, $value, $weights, $description, $extra); } -/* @} */ + +/** + * @} end of defgroup form + */ /** * Generate an internal Drupal URL. |