Commit a1973f2c by Qiang Xue

fixed behavior detaching.

parent 41650dd6
...@@ -416,6 +416,7 @@ class Component extends \yii\base\Object ...@@ -416,6 +416,7 @@ class Component extends \yii\base\Object
*/ */
public function detachBehavior($name) public function detachBehavior($name)
{ {
$this->ensureBehaviors();
if (isset($this->_b[$name])) { if (isset($this->_b[$name])) {
$behavior = $this->_b[$name]; $behavior = $this->_b[$name];
unset($this->_b[$name]); unset($this->_b[$name]);
...@@ -432,12 +433,11 @@ class Component extends \yii\base\Object ...@@ -432,12 +433,11 @@ class Component extends \yii\base\Object
public function detachBehaviors() public function detachBehaviors()
{ {
if ($this->_b !== null) { if ($this->_b !== null) {
$behaviors = $this->_b; foreach ($this->_b as $name => $behavior) {
$this->_b = null;
foreach ($behaviors as $name => $behavior) {
$this->detachBehavior($name); $this->detachBehavior($name);
} }
} }
$this->_b = array();
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment