diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-02 06:44:54 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-02 06:44:54 +0000 |
commit | 798984381f9ee40681d1feb4a7bef72460fe39f2 (patch) | |
tree | 8bcf6b27a9efe7f53a2b1e5fd23d7f4f2789bc51 /lib/action.php | |
parent | 928d3bd68c62d2e35594fb4196216e1f9fd363a2 (diff) | |
parent | 36f73bffbc717d895370e905070c310062127529 (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 2935cb900..75531d34b 100644 --- a/lib/action.php +++ b/lib/action.php @@ -326,7 +326,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(); |