mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 06:17:56 +08:00
Merge pull request #2009 from callmez/master
fix #1992: when set yii\captcha\CaptchaValidator::$captchaAction = '/sit...
This commit is contained in:
@@ -30,6 +30,7 @@ Yii Framework 2 Change Log
|
|||||||
- Bug #1937: Fixed wrong behavior or advanced app's `init --env` when called without parameter actually specified (samdark)
|
- Bug #1937: Fixed wrong behavior or advanced app's `init --env` when called without parameter actually specified (samdark)
|
||||||
- Bug #1959: `Html::activeCheckbox` wasn't respecting custom values for checked/unchecked state (klevron, samdark)
|
- Bug #1959: `Html::activeCheckbox` wasn't respecting custom values for checked/unchecked state (klevron, samdark)
|
||||||
- Bug #1965: `Controller::findLayoutFile()` returns incorrect file path when layout name starts with a slash (qiangxue)
|
- Bug #1965: `Controller::findLayoutFile()` returns incorrect file path when layout name starts with a slash (qiangxue)
|
||||||
|
- Bug #1992: In module scenario that use 'site/captcha' will get wrong refreshUrl (callmez)
|
||||||
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
|
- Bug #1993: afterFind event in AR is now called after relations have been populated (cebe, creocoder)
|
||||||
- Bug #1998: Unchecked required checkbox never pass client validation (klevron)
|
- Bug #1998: Unchecked required checkbox never pass client validation (klevron)
|
||||||
- Bug: Fixed `Call to a member function registerAssetFiles() on a non-object` in case of wrong `sourcePath` for an asset bundle (samdark)
|
- Bug: Fixed `Call to a member function registerAssetFiles() on a non-object` in case of wrong `sourcePath` for an asset bundle (samdark)
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ class Captcha extends InputWidget
|
|||||||
protected function getClientOptions()
|
protected function getClientOptions()
|
||||||
{
|
{
|
||||||
$options = [
|
$options = [
|
||||||
'refreshUrl' => Html::url([$this->captchaAction, CaptchaAction::REFRESH_GET_VAR => 1]),
|
'refreshUrl' => Html::url(['/' . $this->captchaAction, CaptchaAction::REFRESH_GET_VAR => 1]),
|
||||||
'hashKey' => "yiiCaptcha/{$this->captchaAction}",
|
'hashKey' => "yiiCaptcha/{$this->captchaAction}",
|
||||||
];
|
];
|
||||||
return $options;
|
return $options;
|
||||||
|
|||||||
Reference in New Issue
Block a user