Index: branches/iwtransclusion/phase3v3/includes/parser/Parser.php |
— | — | @@ -3131,6 +3131,12 @@ |
3132 | 3132 | $mwMsg = MagicWord::get( 'msg' ); |
3133 | 3133 | $mwMsg->matchStartAndRemove( $part1 ); |
3134 | 3134 | } |
| 3135 | + |
| 3136 | + # Check for RAW: |
| 3137 | + $mwRaw = MagicWord::get( 'raw' ); |
| 3138 | + if ( $mwRaw->matchStartAndRemove( $part1 ) ) { |
| 3139 | + $forceRawInterwiki = true; |
| 3140 | + } |
3135 | 3141 | } |
3136 | 3142 | wfProfileOut( __METHOD__.'-modifiers' ); |
3137 | 3143 | |