diff options
author | Zach Copley <zach@status.net> | 2010-10-22 18:32:08 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-10-22 18:32:08 +0000 |
commit | 3969870cf3878933f0c37c23e1d481d338b52d29 (patch) | |
tree | 8203ca5f66af8112cf9d1e8f7d216eee6a10ff1f | |
parent | ae557ed43643b30e50a6d5b754c53c7f7205e76f (diff) |
Normalize HTML body ids to lowercase when the user is logged out as well.
-rw-r--r-- | lib/action.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 4aa6ace77..01bb0f7e9 100644 --- a/lib/action.php +++ b/lib/action.php @@ -364,7 +364,7 @@ class Action extends HTMLOutputter // lawsuit { $this->elementStart('body', (common_current_user()) ? array('id' => strtolower($this->trimmed('action')), 'class' => 'user_in') - : array('id' => $this->trimmed('action'))); + : array('id' => strtolower($this->trimmed('action')))); $this->elementStart('div', array('id' => 'wrap')); if (Event::handle('StartShowHeader', array($this))) { $this->showHeader(); |