add class to body element

darcs-hash:20081208055023-84dde-5ae95497ae63584f7b86e63eb62ed13607ee1ee8.gz
This commit is contained in:
Evan Prodromou 2008-12-08 00:50:23 -05:00
parent 49644b05d8
commit 71c8d90378
1 changed files with 2 additions and 1 deletions

View File

@ -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();