passed original to method

This commit is contained in:
Michael Hasselbring 2011-08-11 21:27:20 -05:00
parent ea26bde9e1
commit 19f14fc66d
1 changed files with 4 additions and 4 deletions

View File

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