Index: trunk/extensions/FlaggedRevs/FlaggedRevsXML.php |
— | — | @@ -290,7 +290,7 @@ |
291 | 291 | $encPath = htmlspecialchars( FlaggedRevs::styleUrlPath() . '/img' ); |
292 | 292 | $img = '<img id="mw-fr-revisiontoggle" class="fr-toggle-arrow"'; |
293 | 293 | $img .= " src=\"{$encPath}/arrow-down.png\" style=\"display:none;\""; |
294 | | - $img .= ' onMouseOver="FlaggedRevs.onBoxMouseOver()"'; |
| 294 | + $img .= ' onmouseover="FlaggedRevs.onBoxMouseOver()"'; |
295 | 295 | $img .= ' alt="' . wfMsgHtml( 'revreview-toggle-title' ) . '" />'; |
296 | 296 | return $img; |
297 | 297 | } |
Index: trunk/extensions/FlaggedRevs/FlaggedArticleView.php |
— | — | @@ -308,7 +308,7 @@ |
309 | 309 | if ( $this->useSimpleUI() ) { |
310 | 310 | $tagClass = 'flaggedrevs_short'; |
311 | 311 | # Collapse the box details on mouseOut |
312 | | - $encJS .= ' onMouseOut="FlaggedRevs.onBoxMouseOut(event)"'; |
| 312 | + $encJS .= ' onmouseout="FlaggedRevs.onBoxMouseOut(event)"'; |
313 | 313 | } elseif ( $simpleTag ) { |
314 | 314 | $tagClass = 'flaggedrevs_notice'; |
315 | 315 | } elseif ( $pristine ) { |