Selector to allow styles when a user is logged in.

This commit is contained in:
Sarven Capadisli 2009-04-01 01:03:00 +00:00 committed by Evan Prodromou
parent 1fbf9a042e
commit 783d292739

View File

@ -299,7 +299,9 @@ class Action extends HTMLOutputter // lawsuit
*/
function showBody()
{
$this->elementStart('body', array('id' => $this->trimmed('action')));
$this->elementStart('body', (common_current_user()) ? array('id' => $this->trimmed('action'),
'class' => 'user_in')
: array('id' => $this->trimmed('action')));
$this->elementStart('div', array('id' => 'wrap'));
if (Event::handle('StartShowHeader', array($this))) {
$this->showHeader();