Commit 80cf9c8b by Carsten Brandt

better error message

parent a922c41e
...@@ -620,7 +620,7 @@ class View extends Component ...@@ -620,7 +620,7 @@ class View extends Component
if ($pos === null) { if ($pos === null) {
$bundle->jsOptions['position'] = $pos = $position; $bundle->jsOptions['position'] = $pos = $position;
} elseif ($pos > $position) { } elseif ($pos > $position) {
throw new InvalidConfigException("A dependend AssetBundle of '$name' requires a higher position but it conflicts with the position set for '$name'!"); throw new InvalidConfigException("An asset bundle that depends on '$name' has a higher javascript file position configured than '$name'.");
} }
foreach ($bundle->depends as $dep) { foreach ($bundle->depends as $dep) {
$this->registerAssetBundle($dep, $pos); $this->registerAssetBundle($dep, $pos);
......
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