Dears,

Image captcha refresh button span HTML order seems to be changed and coming after the security input field. Expected result is to display beside image captcha.

Please find attached screenshot for more details.

Best Regards
Developer

Comments

Santhosh Kalla created an issue. See original summary.

Santhosh Kalla’s picture

Issue summary: View changes
Santhosh Kalla’s picture

I had to add #weight in the captcha_refresh widget to get the HTML in the correct order. Is there any other way to fix the HTML order to get the refresh image next to captcha image ?

$element['captcha_widgets']['captcha_refresh'] = array(
      '#markup' => theme('image_captcha_refresh_link', array(
        'url' => 'captcha/refresh/' . $form_id,
      )),
      '#weight' => '-1', // added weight to set the correct order
    );