From 3969870cf3878933f0c37c23e1d481d338b52d29 Mon Sep 17 00:00:00 2001
From: Zach Copley <zach@status.net>
Date: Fri, 22 Oct 2010 18:32:08 +0000
Subject: [PATCH] Normalize HTML body ids to lowercase when the user is logged
 out as well.

---
 lib/action.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/action.php b/lib/action.php
index 4aa6ace778..01bb0f7e92 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -364,7 +364,7 @@ class Action extends HTMLOutputter // lawsuit
     {
         $this->elementStart('body', (common_current_user()) ? array('id' => strtolower($this->trimmed('action')),
                                                                     'class' => 'user_in')
-                            : array('id' => $this->trimmed('action')));
+                            : array('id' => strtolower($this->trimmed('action'))));
         $this->elementStart('div', array('id' => 'wrap'));
         if (Event::handle('StartShowHeader', array($this))) {
             $this->showHeader();
-- 
2.39.5