Index: trunk/extensions/MoodBar/ApiFeedbackDashboardResponse.php |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | class ApiFeedbackDashboardResponse extends ApiBase { |
5 | 5 | |
6 | 6 | public function execute() { |
7 | | - global $wgRequest, $wgUser, $wgParser; |
| 7 | + global $wgRequest, $wgUser; |
8 | 8 | |
9 | 9 | if ( $wgUser->isAnon() ) { |
10 | 10 | $this->dieUsage( "You don't have permission to do that", 'permission-denied' ); |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | 'appendtext' => ( $talkPage->exists() ? "\n\n" : '' ) . |
44 | 44 | $feedback_link . "\n" . |
45 | 45 | '<span id="feedback-dashboard-response-' . $item->getProperty('id') . '"></span>' . "\n\n" . |
46 | | - $wgParser->cleanSigInSig($params['response']) . "\n\n~~~~", |
| 46 | + Parser::cleanSigInSig($params['response']) . "\n\n~~~~", |
47 | 47 | 'token' => $params['token'], |
48 | 48 | 'summary' => '', |
49 | 49 | 'notminor' => true, |