summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-10-21 13:03:56 -0700
committerZach Copley <zach@status.net>2010-10-21 13:03:56 -0700
commitfb86e7c2857a467e9606cf7e024dda6807639c0c (patch)
tree286e04492a37181e5785f208154df58074f4aff7
parent648f79be10c1f62eb649563aa4f1cd5c51ddb19f (diff)
Normalize all action HTML body ids to lowercase
-rw-r--r--lib/action.php2
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'));