diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-15 22:08:49 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-15 22:08:49 +0000 |
commit | e394441a955f6bf1ee5b776f0aa6e13079191ed5 (patch) | |
tree | 074002796e7596c2dfe8f2d2f49858b0ae5d19d1 /includes | |
parent | b8619c29b7757fd0992379a728b207b2f944371d (diff) | |
download | brdo-e394441a955f6bf1ee5b776f0aa6e13079191ed5.tar.gz brdo-e394441a955f6bf1ee5b776f0aa6e13079191ed5.tar.bz2 |
#530836 by mr.baileys: Fixed drupal_set_page_content() api documentation.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 841396ec7..1614d2510 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -4571,7 +4571,8 @@ function drupal_alter($type, &$data, &$context1 = NULL, &$context2 = NULL) { * @param $content * A string or renderable array representing the body of the page. * @return - * A renderable array representing the body of the page. + * If called without $content, a renderable array representing the body of + * the page. */ function drupal_set_page_content($content = NULL) { $content_block = &drupal_static(__FUNCTION__, NULL); |