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() public function save()
{ {
$this->manager->saveItem($this, $this->_oldName); $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(), self::PH_BODY_END => $this->renderBodyEndHtml(),
]); ]);
unset( $this->metaTags = null;
$this->metaTags, $this->linkTags = null;
$this->linkTags, $this->css = null;
$this->css, $this->cssFiles = null;
$this->cssFiles, $this->js = null;
$this->js, $this->jsFiles = null;
$this->jsFiles
);
} }
/** /**

Loading…
Cancel
Save