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
68fafdb4
Commit
68fafdb4
authored
Jul 30, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4524 from mbman/bugfix-4497
Fixes #4497: Bad Request, Unable to verify your data submission
parents
d3e8261d
94dc27a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
BaseStringHelper.php
framework/helpers/BaseStringHelper.php
+1
-1
No files found.
framework/CHANGELOG.md
View file @
68fafdb4
...
@@ -75,6 +75,7 @@ Yii Framework 2 Change Log
...
@@ -75,6 +75,7 @@ Yii Framework 2 Change Log
-
Bug #4453:
`yii message/extract`
wasn't properly writing to po files in case of multiple categories (samdark)
-
Bug #4453:
`yii message/extract`
wasn't properly writing to po files in case of multiple categories (samdark)
-
Bug #4469: Make
`Security::compareString()`
timing depend only on length of
`$actual`
input and add unit test. (tom--)
-
Bug #4469: Make
`Security::compareString()`
timing depend only on length of
`$actual`
input and add unit test. (tom--)
-
Bug #4470: Avoid endless loop when exporting logs with low values of flushInterval and eportInterval (cebe)
-
Bug #4470: Avoid endless loop when exporting logs with low values of flushInterval and eportInterval (cebe)
-
Bug #4497: Fixed StringHelper::byteSubstr() returning empty string on null $length param (mbman)
-
Bug #4514: Fixed Request class crashing when empty CSRF token value is sent in cookie (cebe)
-
Bug #4514: Fixed Request class crashing when empty CSRF token value is sent in cookie (cebe)
-
Bug #4519:
`yii\base\Model::isAttributeRequired()`
should check if the
`when`
option of the validator is set (thiagotalma)
-
Bug #4519:
`yii\base\Model::isAttributeRequired()`
should check if the
`when`
option of the validator is set (thiagotalma)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
...
...
framework/helpers/BaseStringHelper.php
View file @
68fafdb4
...
@@ -40,7 +40,7 @@ class BaseStringHelper
...
@@ -40,7 +40,7 @@ class BaseStringHelper
*/
*/
public
static
function
byteSubstr
(
$string
,
$start
,
$length
)
public
static
function
byteSubstr
(
$string
,
$start
,
$length
)
{
{
return
mb_substr
(
$string
,
$start
,
$length
,
'8bit'
);
return
mb_substr
(
$string
,
$start
,
$length
?:
mb_strlen
(
$string
)
,
'8bit'
);
}
}
/**
/**
...
...
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