From 7cc8d7679afc5dc720c08c310bfac1c76bbb7f5e Mon Sep 17 00:00:00 2001 From: Nathaniel Date: Fri, 25 Nov 2011 13:12:07 +0900 Subject: [PATCH] Issue #1322278 by rocket_nova: Fixed documentation problem with theme, doesn't link to theme functions list. --- core/includes/theme.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/includes/theme.inc b/core/includes/theme.inc index 3ccd71ce0ec..06c4b79f097 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -781,8 +781,9 @@ function list_themes($refresh = FALSE) { * Generates themed output. * * All requests for themed output must go through this function. It examines - * the request and routes it to the appropriate theme function or template, by - * checking the theme registry. + * the request and routes it to the appropriate + * @link themeable theme function or template @endlink, by checking the theme + * registry. * * The first argument to this function is the name of the theme hook. For * instance, to theme a table, the theme hook name is 'table'. By default, this @@ -882,6 +883,8 @@ function list_themes($refresh = FALSE) { * * @return * An HTML string representing the themed output. + * + * @see themeable */ function theme($hook, $variables = array()) { static $hooks = NULL;