Selector to allow styles when a user is logged in.
This commit is contained in:
parent
1fbf9a042e
commit
783d292739
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user