Plz, help understand which way should I set alt attribute of the captcha image.
It seems should be like this:
$this->widget('CCaptcha', array('showRefreshButton'=>false, 'imageOptions'=>array('alt'=>'code')));
but this way I can’t set alt attribute till changing 98-th line of CCaptcha.php
from
$alt=isset($imageOptions['alt'])?$imageOptions['alt']:'';
to
$alt=isset($this->imageOptions['alt'])?$this->imageOptions['alt']:'';
thanks