The span for unsupported systems (mollom_captcha_unsupported) found in the mollom.captcha.audio.tpl.php file was changed from being hidden using an inline style of display:none to a class of mollom-hide. Unfortunately, the class was not set to be hidden and thus the text for unsupported system is showing up for all by default.

CommentFileSizeAuthor
#2 2429789.mollom.hidden_message.2.patch766 byteseshta
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dkendrickmbll’s picture

This bug can be resolved in one of two ways. The first way would be to add a style into the mollom.css file for the mollom-hide class to set the display to none.

span.mollom-hide {
  display: none;
}

The other way would be to change the span tag from using a class to hide the span back to using the inline style to set the display as none.

<span id="mollom_captcha_unsupported" style="display:none;">

eshta’s picture

Status: Active » Needs review
FileSize
766 bytes

Here is an approach that makes use of Drupal's element-hidden class rather than the hard-coded display:none or the weird non-existent Mollom class ;-)

@dkendrickmbll Could you try it out and see if it resolves the problem for you?

  • eshta committed aed6a59 on 7.x-2.x
    Issue #2429789 by eshta: Hide unsupported audio message with standard...

  • eshta committed 136b7c6 on 6.x-2.x
    Issue #2429789 by eshta: Hide unsupported audio message with standard...
eshta’s picture

Status: Needs review » Fixed

Fixed and backported. Thanks for pointing this out.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.