diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2004-01-28 11:36:29 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2004-01-28 11:36:29 +0000 |
commit | acd5eb1eb6e725aac72b85590e7979d3d4d2a4dc (patch) | |
tree | 47a4c6112efe779e9240d8023e15f2bb7887d437 | |
parent | 02c622dea123ff89ca45d19bd4ee402f8cf74a00 (diff) | |
download | brdo-acd5eb1eb6e725aac72b85590e7979d3d4d2a4dc.tar.gz brdo-acd5eb1eb6e725aac72b85590e7979d3d4d2a4dc.tar.bz2 |
- Fixed bug #5439: Doxygen errors in theme.inc
-rw-r--r-- | includes/theme.inc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 25c504883..03d92d980 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -117,6 +117,15 @@ function path_to_theme() { return dirname($themes[$theme]->filename); } +/** + * @defgroup themeable Themeable functions + * @{ + * + * Themeable functions - functions that can be styled differently in themes. + * + * @see theme + * @see theme.inc + */ /** * Returns an entire Drupal page displaying the supplied content. @@ -487,7 +496,7 @@ function theme_blocks($region) { } return $output; } -/* @} End of defgroup themeable */ +/* @} */ function _theme_table_cell($cell, $header = 0) { if (is_array($cell)) { |