Commit 7a4572fd by Qiang Xue

Merge branch 'master' of github.com:yiisoft/yii2

parents 7fa240be f1742f58
......@@ -39,7 +39,7 @@ class AssetConverter extends Component implements IAssetConverter
public function convert($asset, $basePath)
{
$pos = strrpos($asset, '.');
if ($pos === false) {
if ($pos !== false) {
$ext = substr($asset, $pos + 1);
if (isset($this->commands[$ext])) {
list ($ext, $command) = $this->commands[$ext];
......
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