Skip to content

Commit

Permalink
Merge pull request #1616 from jim-parry/fix/viewconfig
Browse files Browse the repository at this point in the history
Fix View config merge order
  • Loading branch information
lonnieezell authored Dec 19, 2018
2 parents 6b8b8b4 + 274cfe8 commit 859af77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Config/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ class View extends BaseConfig

public function __construct()
{
$this->filters = array_merge($this->filters, $this->coreFilters);
$this->plugins = array_merge($this->plugins, $this->corePlugins);
$this->filters = array_merge($this->coreFilters, $this->filters);
$this->plugins = array_merge($this->corePlugins, $this->plugins);

parent::__construct();
}
Expand Down

0 comments on commit 859af77

Please sign in to comment.