Index: trunk/phase3/includes/parser/ParserOptions.php |
— | — | @@ -90,6 +90,16 @@ |
91 | 91 | function getUser() { return $this->mUser; } |
92 | 92 | function getPreSaveTransform() { return $this->mPreSaveTransform; } |
93 | 93 | |
| 94 | + /** |
| 95 | + * @param $title Title |
| 96 | + * @return Skin |
| 97 | + * @deprecated Use Linker::* instead |
| 98 | + */ |
| 99 | + function getSkin( $title = null ) { |
| 100 | + wfDeprecated( __METHOD__ ); |
| 101 | + return new DummyLinker; |
| 102 | + } |
| 103 | + |
94 | 104 | function getDateFormat() { |
95 | 105 | $this->optionUsed('dateformat'); |
96 | 106 | if ( !isset( $this->mDateFormat ) ) { |