From 71c8d903785ada852408919a38161024c7e06cb7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Dec 2008 00:50:23 -0500 Subject: [PATCH] add class to body element darcs-hash:20081208055023-84dde-5ae95497ae63584f7b86e63eb62ed13607ee1ee8.gz --- lib/util.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 1b0fc1ec82..ab683d1a2a 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();