Commit a7cf737b authored by Taylor Otwell's avatar Taylor Otwell

Removed version control from Asset class. Attempting to implement better method of doing this soon.

parent 88f3f222
...@@ -90,11 +90,7 @@ class Asset_Container { ...@@ -90,11 +90,7 @@ class Asset_Container {
*/ */
public function add($name, $source, $dependencies = array(), $attributes = array()) public function add($name, $source, $dependencies = array(), $attributes = array())
{ {
// Since assets may contain timestamps to force a refresh, we will strip them $type = (File::extension($source) == 'css') ? 'style' : 'script';
// off to get the "real" filename of the asset.
$segments = explode('?', $source);
$type = (File::extension($segments[0]) == 'css') ? 'style' : 'script';
return call_user_func(array($this, $type), $name, $source, $dependencies, $attributes); return call_user_func(array($this, $type), $name, $source, $dependencies, $attributes);
} }
......
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