Browse Source

fix #1992: when set yii\captcha\CaptchaValidator::$captchaAction = '/site/captcha'

yii\captcha\CaptchaValidator->createCaptchaAction() error
tags/2.0.0-beta
callmez 11 years ago
parent
commit
579003ab93
  1. 2
      framework/captcha/CaptchaValidator.php

2
framework/captcha/CaptchaValidator.php

@ -68,7 +68,7 @@ class CaptchaValidator extends Validator
*/
public function createCaptchaAction()
{
$ca = Yii::$app->createController($this->captchaAction);
$ca = Yii::$app->createController(ltrim($this->captchaAction, '/'));
if ($ca !== false) {
/** @var \yii\base\Controller $controller */
list($controller, $actionID) = $ca;

Loading…
Cancel
Save