From fb86e7c2857a467e9606cf7e024dda6807639c0c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 21 Oct 2010 13:03:56 -0700 Subject: Normalize all action HTML body ids to lowercase --- lib/action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')); -- cgit v1.2.3