bug #4259 reCaptcha sound session expired problem

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2014-10-17 13:14:28 +05:30
parent f3fe7ca528
commit bdd76f18ce
2 changed files with 7 additions and 7 deletions

View File

@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog
4.2.11.0 (not yet released)
- bug ReferenceError: Table_onover is not defined
- bug #4552 Incorrect routines display for database due to case insensitive checks
- bug #4259 reCaptcha sound session expired problem
4.2.10.0 (2014-10-11)
- bug #4361 Can't change font size (when config.inc.php not present)
@ -11,7 +12,6 @@ phpMyAdmin - ChangeLog
- bug PDF export: title not present in PDF
- bug #4543 Changing column name can break saved "order by" clause
- bug #4545 trying to favorite table while browser localStorage is disabled throws JS error
- bug #4259 reCaptcha sound session expired problem
- bug #4548 Inline editing a field converts tab to spaces
- bug #4252 Database-level permission bug for db names containing underscores
- bug #3120 Events are not exported when using xml
@ -276,7 +276,6 @@ phpMyAdmin - ChangeLog
- bug #4257 Hide fractional seconds when applicable
- bug #4264 Uncheck "Ignore" while inserting, upon leaving a textarea
- bug #4260 reCaptcha is ignoring language settings
- bug #4259 reCaptcha sound session expired problem
- bug #4263 Japanese character encoding not working properly when exporting
- bug #4269 Notice on table relation page
- bug #4270 Bad text-color for table comments

View File

@ -245,11 +245,12 @@ class AuthenticationCookie extends AuthenticationPlugin
</noscript>
<script type="text/javascript">
$(function() {
$("#recaptcha_reload_btn").addClass("disableAjax");
$("#recaptcha_switch_audio_btn").addClass("disableAjax");
$("#recaptcha_switch_img_btn").addClass("disableAjax");
$("#recaptcha_whatsthis_btn").addClass("disableAjax");
$("#recaptcha_audio_play_again").live("mouseover", function() {
$("#recaptcha_reload_btn," +
"#recaptcha_switch_audio_btn," +
"#recaptcha_switch_img_btn," +
"#recaptcha_whatsthis_btn," +
"#recaptcha_audio_play_again")
.live("mouseover", function() {
$(this).addClass("disableAjax");
});
});