Skip to content

Commit 5790cbf

Browse files
committed
release version 1.1.19
1 parent b4c48cd commit 5790cbf

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Yii Framework Change Log
22
========================
33

4-
Version 1.1.19 under development
5-
--------------------------------
4+
Version 1.1.19 June 8, 2017
5+
---------------------------
66

77
- Bug #4155: Ignore PHP 7.1 warnings about deprecated mcrypt (samdark)
88
- Bug #4156: Timeout in checkMxPorts of mail validator is now configurable (kenguest, samdark)

framework/YiiBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class YiiBase
8080
*/
8181
public static function getVersion()
8282
{
83-
return '1.1.19-dev';
83+
return '1.1.19';
8484
}
8585

8686
/**

framework/yiilite.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class YiiBase
4040
private static $_logger;
4141
public static function getVersion()
4242
{
43-
return '1.1.18';
43+
return '1.1.19';
4444
}
4545
public static function createWebApplication($config=null)
4646
{
@@ -5729,7 +5729,7 @@ public static function errorSummary($model,$header=null,$footer=null,$htmlOption
57295729
foreach($errors as $error)
57305730
{
57315731
if($error!='')
5732-
$content.="<li>$error</li>\n";
5732+
$content.= '<li>'.self::encode($error)."</li>\n";
57335733
if($firstError)
57345734
break;
57355735
}
@@ -5749,7 +5749,7 @@ public static function errorSummary($model,$header=null,$footer=null,$htmlOption
57495749
public static function error($model,$attribute,$htmlOptions=array())
57505750
{
57515751
self::resolveName($model,$attribute); // turn [a][b]attr into attr
5752-
$error=$model->getError($attribute);
5752+
$error=self::encode($model->getError($attribute));
57535753
if($error!='')
57545754
{
57555755
if(!isset($htmlOptions['class']))

0 commit comments

Comments
 (0)