Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -230,7 +230,12 @@ |
231 | 231 | function getHTML() { return $this->mBodytext; } |
232 | 232 | function debug( $text ) { $this->mDebugtext .= $text; } |
233 | 233 | |
| 234 | + /* @deprecated */ |
234 | 235 | function setParserOptions( $options ) { |
| 236 | + return $this->ParserOptions( $options ); |
| 237 | + } |
| 238 | + |
| 239 | + function ParserOptions( $options = null ) { |
235 | 240 | return wfSetVar( $this->mParserOptions, $options ); |
236 | 241 | } |
237 | 242 | |
— | — | @@ -838,7 +843,7 @@ |
839 | 844 | ); |
840 | 845 | $a = htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),$a )); |
841 | 846 | |
842 | | - $wgOut->addMeta ( 'KEYWORDS' , $a ) ; |
| 847 | + $wgOut->addMeta( 'keywords' , $a ) ; |
843 | 848 | } |
844 | 849 | |
845 | 850 | /** |