Index: trunk/phase3/languages/LanguageConverter.php |
— | — | @@ -392,7 +392,7 @@ |
393 | 393 | $isredir = $wgRequest->getText( 'redirect', 'yes' ); |
394 | 394 | $action = $wgRequest->getText( 'action' ); |
395 | 395 | $linkconvert = $wgRequest->getText( 'linkconvert', 'yes' ); |
396 | | - if ( $isredir == 'no' || $action == 'edit' || $linkconvert == 'no' ) { |
| 396 | + if ( $isredir == 'no' || $action == 'edit' || $action == 'submit' || $linkconvert == 'no' ) { |
397 | 397 | return $text; |
398 | 398 | } else { |
399 | 399 | $this->mTitleDisplay = $this->convert($text); |
— | — | @@ -479,7 +479,7 @@ |
480 | 480 | |
481 | 481 | $ns=NS_MAIN; |
482 | 482 | |
483 | | - if ( $disableLinkConversion || $isredir == 'no' || $action == 'edit' |
| 483 | + if ( $disableLinkConversion || $isredir == 'no' || $action == 'edit' || $action == 'submit' |
484 | 484 | || $linkconvert == 'no' || $wgUser->getOption('noconvertlink') == 1 ) { |
485 | 485 | return; |
486 | 486 | } |