diff options
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 1b0fc1ec8..ab683d1a2 100644 --- a/lib/util.php +++ b/lib/util.php @@ -163,6 +163,7 @@ define('PAGE_TYPE_PREFS', 'text/html,application/xhtml+xml,application/xml;q=0.3 function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=NULL) { global $config, $xw; + global $action; /* XXX: kind of cheating here. */ common_start_html(); @@ -209,7 +210,7 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall= } } common_element_end('head'); - common_element_start('body'); + common_element_start('body', $action); common_element_start('div', array('id' => 'wrap')); common_element_start('div', array('id' => 'header')); common_nav_menu(); |