Changed error and facebookaction wrap selector from @class to @id.

This commit is contained in:
Sarven Capadisli 2009-02-04 17:03:59 +00:00
parent 593d41f78b
commit b8e10428d3
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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();