From: Zach Copley Date: Fri, 22 Oct 2010 18:32:08 +0000 (+0000) Subject: Normalize HTML body ids to lowercase when the user is logged out as well. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3969870cf3878933f0c37c23e1d481d338b52d29;p=quix0rs-gnu-social.git Normalize HTML body ids to lowercase when the user is logged out as well. --- 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();