Browse Source

Do not unset class properties!

this will result in objects that do not have the property anymore :-)
tags/2.0.0-beta
Carsten Brandt 11 years ago
parent
commit
e8b674dc78
  1. 2
      framework/yii/rbac/Item.php
  2. 14
      framework/yii/web/View.php

2
framework/yii/rbac/Item.php

@ -199,6 +199,6 @@ class Item extends Object
public function save()
{
$this->manager->saveItem($this, $this->_oldName);
unset($this->_oldName);
$this->_oldName = null;
}
}

14
framework/yii/web/View.php

@ -163,14 +163,12 @@ class View extends \yii\base\View
self::PH_BODY_END => $this->renderBodyEndHtml(),
]);
unset(
$this->metaTags,
$this->linkTags,
$this->css,
$this->cssFiles,
$this->js,
$this->jsFiles
);
$this->metaTags = null;
$this->linkTags = null;
$this->css = null;
$this->cssFiles = null;
$this->js = null;
$this->jsFiles = null;
}
/**

Loading…
Cancel
Save