Guest User

Untitled

a guest
Jan 16th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. --- a/captcha.module
  2. +++ b/captcha.module
  3. @@ -165,8 +165,9 @@
  4. }
  5.  
  6. // Get placement in form and insert in form.
  7. - $captcha_placement = _captcha_get_captcha_placement($form_id, $form);
  8. - _captcha_insert_captcha_element($form, $captcha_placement, $captcha_element);
  9. + if ($captcha_placement = _captcha_get_captcha_placement($form_id, $form)) {
  10. + _captcha_insert_captcha_element($form, $captcha_placement, $captcha_element);
  11. + }
  12.  
  13. }
  14. }
Add Comment
Please, Sign In to add comment