Index: trunk/extensions/FlaggedRevs/FlaggedRevision.php |
— | — | @@ -101,6 +101,13 @@ |
102 | 102 | public function getComment() { |
103 | 103 | return $this->mComment; |
104 | 104 | } |
| 105 | + |
| 106 | + /** |
| 107 | + * @returns Integer the user ID of the reviewer |
| 108 | + */ |
| 109 | + public function getUser() { |
| 110 | + return $this->mUser; |
| 111 | + } |
105 | 112 | |
106 | 113 | /** |
107 | 114 | * @returns Integer revision timestamp in MW format |
— | — | @@ -138,13 +145,6 @@ |
139 | 146 | } |
140 | 147 | return $text; |
141 | 148 | } |
142 | | - |
143 | | - /** |
144 | | - * @returns Integer the user ID of the reviewer |
145 | | - */ |
146 | | - public function getUser() { |
147 | | - return $this->mUser; |
148 | | - } |
149 | 149 | |
150 | 150 | /** |
151 | 151 | * Actually load the revision's expanded text |