You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason is in Lib/AssetConfig::filters(). It expects filters to be in $this->_data[$ext][self::FILTERS], otherwise it returns an empty array and no filters are proccessed. But filters comes in $this->_data[$ext][self::TARGETS][$target][self::FILTERS].
Commenting out the following lines solves the problem (filters are proccessed just after this, in the very same function):
// if (!isset($this->_data[$ext][self::FILTERS])) {
// return array();
// }
The text was updated successfully, but these errors were encountered:
All filters[] in config are ignored.
The reason is in Lib/AssetConfig::filters(). It expects filters to be in $this->_data[$ext][self::FILTERS], otherwise it returns an empty array and no filters are proccessed. But filters comes in $this->_data[$ext][self::TARGETS][$target][self::FILTERS].
Commenting out the following lines solves the problem (filters are proccessed just after this, in the very same function):
// if (!isset($this->_data[$ext][self::FILTERS])) {
// return array();
// }
The text was updated successfully, but these errors were encountered: