| Index: trunk/phase3/includes/ImagePage.php |
| — | — | @@ -330,7 +330,7 @@ |
| 331 | 331 | $height_orig = $this->displayImg->getHeight( $page ); |
| 332 | 332 | $height = $height_orig; |
| 333 | 333 | |
| 334 | | - $longDesc = wfMsgExt( 'parentheses', 'parseinline', $this->displayImg->getLongDesc() ); |
| | 334 | + $longDesc = wfMsg( 'parentheses', $this->displayImg->getLongDesc() ); |
| 335 | 335 | |
| 336 | 336 | wfRunHooks( 'ImageOpenShowImageInlineBefore', array( &$this, &$wgOut ) ); |
| 337 | 337 | |
| Index: trunk/phase3/includes/specials/SpecialSearch.php |
| — | — | @@ -596,7 +596,7 @@ |
| 597 | 597 | if( $img ) { |
| 598 | 598 | $thumb = $img->transform( array( 'width' => 120, 'height' => 120 ) ); |
| 599 | 599 | if( $thumb ) { |
| 600 | | - $desc = wfMsgExt( 'parentheses', 'parseinline', $img->getShortDesc() ); |
| | 600 | + $desc = wfMsg( 'parentheses', $img->getShortDesc() ); |
| 601 | 601 | wfProfileOut( __METHOD__ ); |
| 602 | 602 | // Float doesn't seem to interact well with the bullets. |
| 603 | 603 | // Table messes up vertical alignment of the bullets. |