From: Zach Copley Date: Thu, 21 Oct 2010 20:03:56 +0000 (-0700) Subject: Normalize all action HTML body ids to lowercase X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fb86e7c2857a467e9606cf7e024dda6807639c0c;p=quix0rs-gnu-social.git Normalize all action HTML body ids to lowercase --- diff --git a/lib/action.php b/lib/action.php index 3d7d1d808a..4aa6ace778 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'));