Skip to content

Commit

Permalink
Changelog and small fix.
Browse files Browse the repository at this point in the history
git-svn-id: http://yii.googlecode.com/svn/trunk@3588 c7f931c7-7552-0410-b027-2fb3d89d9100
  • Loading branch information
qiangxue committed Feb 17, 2012
1 parent b189d60 commit 651178e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -6,6 +6,7 @@ Version 1.1.11 work in progress
-------------------------------
- Enh #171: Added support for PUT and DELETE request tunneled through POST via parameter named _method in POST body (musterknabe)
- Enh #266: Add support for HTML5 url, email, number, range and date fields to CHtml (gregmolnar)
- Enh: Proper handling of Flash/Flex request when using CWebLogRoute with FireBug output. (resurtm)

Version 1.1.10 February 12, 2012
--------------------------------
Expand Down
2 changes: 1 addition & 1 deletion framework/logging/CWebLogRoute.php
Expand Up @@ -68,7 +68,7 @@ protected function render($view,$data)
return;
$view.='-firebug';
}
else if(!($app instanceof CWebApplication) || $isAjax)
else if(!($app instanceof CWebApplication) || $isAjax || $isFlash)
return;

$viewFile=YII_PATH.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR.$view.'.php';
Expand Down

0 comments on commit 651178e

Please sign in to comment.