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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
7f754648
Commit
7f754648
authored
May 28, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #3601: Fixed the bug that the refresh URL was not generated correctly by `Captcha`
parent
52105736
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
CHANGELOG.md
framework/CHANGELOG.md
+2
-1
Captcha.php
framework/captcha/Captcha.php
+8
-1
No files found.
framework/CHANGELOG.md
View file @
7f754648
...
...
@@ -34,7 +34,8 @@ Yii Framework 2 Change Log
-
Bug #3564: Fixed the bug that primary key columns should not take default values from schema (qiangxue)
-
Bug #3567: Fixed the bug that smallint was treated as string for PostgreSQL (qiangxue)
-
Bug #3578: Fixed postgreSQL column type detection, added missing types (MDMunir, cebe)
-
Bug #3591: Fix incomplete obsolete filling in i18n
`MessageController::saveMessagesToDb()`
(advsm)
-
Bug #3591: Fixed incomplete obsolete filling in i18n
`MessageController::saveMessagesToDb()`
(advsm)
-
Bug #3601: Fixed the bug that the refresh URL was not generated correctly by
`Captcha`
(qiangxue, klevron)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: URL encoding for the route parameter added to
`\yii\web\UrlManager`
(klimov-paul)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
...
...
framework/captcha/Captcha.php
View file @
7f754648
...
...
@@ -114,8 +114,15 @@ class Captcha extends InputWidget
*/
protected
function
getClientOptions
()
{
$route
=
$this
->
captchaAction
;
if
(
is_array
(
$route
))
{
$route
[
CaptchaAction
::
REFRESH_GET_VAR
]
=
1
;
}
else
{
$route
=
[
$route
,
CaptchaAction
::
REFRESH_GET_VAR
=>
1
];
}
$options
=
[
'refreshUrl'
=>
Url
::
to
([
'/'
.
$this
->
captchaAction
,
CaptchaAction
::
REFRESH_GET_VAR
=>
1
]
),
'refreshUrl'
=>
Url
::
to
Route
(
$route
),
'hashKey'
=>
"yiiCaptcha/
{
$this
->
captchaAction
}
"
,
];
...
...
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