diff options
author | Zach Copley <zach@status.net> | 2010-10-21 13:03:56 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-10-21 13:03:56 -0700 |
commit | fb86e7c2857a467e9606cf7e024dda6807639c0c (patch) | |
tree | 286e04492a37181e5785f208154df58074f4aff7 /lib/action.php | |
parent | 648f79be10c1f62eb649563aa4f1cd5c51ddb19f (diff) |
Normalize all action HTML body ids to lowercase
Diffstat (limited to 'lib/action.php')
-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 3d7d1d808..4aa6ace77 100644 --- a/lib/action.php +++ b/lib/action.php @@ -362,7 +362,7 @@ class Action extends HTMLOutputter // lawsuit */ function showBody() { - $this->elementStart('body', (common_current_user()) ? array('id' => $this->trimmed('action'), + $this->elementStart('body', (common_current_user()) ? array('id' => strtolower($this->trimmed('action')), 'class' => 'user_in') : array('id' => $this->trimmed('action'))); $this->elementStart('div', array('id' => 'wrap')); |