Index: branches/wmf/1.18wmf1/extensions/Translate/TranslateEditAddons.php |
— | — | @@ -124,7 +124,11 @@ |
125 | 125 | * Hook: AlternateEdit |
126 | 126 | */ |
127 | 127 | public static function intro( EditPage $editpage ) { |
128 | | - $editpage->suppressIntro = true; |
| 128 | + $handle = new MessageHandle( $editpage->mTitle ); |
| 129 | + if ( $handle->isValid() ) { |
| 130 | + $editpage->suppressIntro = true; |
| 131 | + return true; |
| 132 | + } |
129 | 133 | |
130 | 134 | $msg = wfMsgForContent( 'translate-edit-tag-warning' ); |
131 | 135 | |
Index: branches/wmf/1.18wmf1/extensions/Translate/README |
— | — | @@ -29,6 +29,9 @@ |
30 | 30 | http://translatewiki.net/docs/Translate/html/ |
31 | 31 | |
32 | 32 | == Change log == |
| 33 | +* 2012-01-10 |
| 34 | +- Translate extension no longer unconditionally suppresses edit intros |
| 35 | +- Fixed compatibility issue with logs on < MW 1.18 |
33 | 36 | * 2012-01-06 |
34 | 37 | - Fixes to the sizing of the translation editor dialog |
35 | 38 | * 2012-01-05 |