Browse Source

Merge pull request #50 from mikelbring/develop

Allow ? in Asset source
Taylor Otwell 13 years ago
parent
commit
a0c7db34fc
1 changed files with 3 additions and 1 deletions
  1. 3 1
      system/asset.php

+ 3 - 1
system/asset.php

@@ -122,7 +122,9 @@ class Asset_Container {
 	 */
 	public function add($name, $source, $dependencies = array(), $attributes = array())
 	{
-		$type = (File::extension($source) == 'css') ? 'style' : 'script';
+		$_source = explode('?', $source);
+
+		$type = (File::extension($_source[0]) == 'css') ? 'style' : 'script';
 
 		return call_user_func(array($this, $type), $name, $source, $dependencies, $attributes);
 	}