From: Sarven Capadisli Date: Wed, 4 Feb 2009 17:03:59 +0000 (+0000) Subject: Changed error and facebookaction wrap selector from @class to @id. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b8e10428d3f5e86cab97e226947f077ba98f907e;hp=593d41f78b8caa94208abdd5787ef26280460b61;p=quix0rs-gnu-social.git Changed error and facebookaction wrap selector from @class to @id. --- diff --git a/lib/error.php b/lib/error.php index 03065bc709..526d9f81be 100644 --- a/lib/error.php +++ b/lib/error.php @@ -111,7 +111,7 @@ class ErrorAction extends Action function showBody() { $this->elementStart('body', array('id' => 'error')); - $this->elementStart('div', 'wrap'); + $this->elementStart('div', array('id' => 'wrap')); $this->showHeader(); $this->showCore(); $this->showFooter(); diff --git a/lib/facebookaction.php b/lib/facebookaction.php index bfba702e6a..f42427540a 100644 --- a/lib/facebookaction.php +++ b/lib/facebookaction.php @@ -168,7 +168,7 @@ class FacebookAction extends Action function showBody() { - $this->elementStart('div', 'wrap'); + $this->elementStart('div', array('id' => 'wrap')); $this->showHeader(); $this->showCore(); $this->showFooter();