Skip to content

Commit

Permalink
FIX Clean cache on Config->remove()
Browse files Browse the repository at this point in the history
  • Loading branch information
chillu committed Mar 24, 2013
1 parent bb52f2a commit 69ae1f3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/Config.php
Expand Up @@ -590,6 +590,8 @@ public function remove($class, $name /*,$key = null*/ /*,$value = null*/) {
if (!isset($this->suppresses[0][$class][$name])) $this->suppresses[0][$class][$name] = array();

$this->suppresses[0][$class][$name][] = $suppress;

$this->cache->clean("__{$class}__{$name}");
}

}
Expand Down

0 comments on commit 69ae1f3

Please sign in to comment.