]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Normalize all action HTML body ids to lowercase
authorZach Copley <zach@status.net>
Thu, 21 Oct 2010 20:03:56 +0000 (13:03 -0700)
committerZach Copley <zach@status.net>
Thu, 21 Oct 2010 20:03:56 +0000 (13:03 -0700)
lib/action.php

index 3d7d1d808aa883027d5d0e79e7a275e0b1810b8e..4aa6ace778b8c3c0ed7aaa26428a1b230bee4c7c 100644 (file)
@@ -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'));