Skip to content
Snippets Groups Projects
Commit 4fb1a34a authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Fat finger error in removeCSS.

parent 9d1406cc
No related merge requests found
...@@ -298,7 +298,7 @@ class ResourceContainer ...@@ -298,7 +298,7 @@ class ResourceContainer
{ {
list($name, ) = explode('.', $file); list($name, ) = explode('.', $file);
$name .= '.css'; $name .= '.css';
$index = $array_search($name, $this->css); $index = array_search($name, $this->css);
if (false !== $index) { if (false !== $index) {
unset($this->css[$index]); unset($this->css[$index]);
} }
......
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