Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
be164e45
Commit
be164e45
authored
May 20, 2014
by
DaSourcerer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle invalid code sequences in Html::encode()
parent
2b26dd32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
BaseHtml.php
framework/helpers/BaseHtml.php
+1
-1
HtmlTest.php
tests/unit/framework/helpers/HtmlTest.php
+1
-1
No files found.
framework/helpers/BaseHtml.php
View file @
be164e45
...
@@ -92,7 +92,7 @@ class BaseHtml
...
@@ -92,7 +92,7 @@ class BaseHtml
*/
*/
public
static
function
encode
(
$content
,
$doubleEncode
=
true
)
public
static
function
encode
(
$content
,
$doubleEncode
=
true
)
{
{
return
htmlspecialchars
(
$content
,
ENT_QUOTES
,
Yii
::
$app
->
charset
,
$doubleEncode
);
return
htmlspecialchars
(
$content
,
ENT_QUOTES
|
ENT_SUBSTITUTE
,
Yii
::
$app
->
charset
,
$doubleEncode
);
}
}
/**
/**
...
...
tests/unit/framework/helpers/HtmlTest.php
View file @
be164e45
...
@@ -38,7 +38,7 @@ class HtmlTest extends TestCase
...
@@ -38,7 +38,7 @@ class HtmlTest extends TestCase
public
function
testEncode
()
public
function
testEncode
()
{
{
$this
->
assertEquals
(
"a<>&"'
"
,
Html
::
encode
(
"a<>&
\"
'
"
));
$this
->
assertEquals
(
"a<>&"'
�"
,
Html
::
encode
(
"a<>&
\"
'
\x80
"
));
}
}
public
function
testDecode
()
public
function
testDecode
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment