Index: trunk/extensions/EducationProgram/includes/EPLogFormatter.php |
— | — | @@ -38,5 +38,19 @@ |
39 | 39 | } |
40 | 40 | return $link; |
41 | 41 | } |
| 42 | + |
| 43 | + /** |
| 44 | + * (non-PHPdoc) |
| 45 | + * @see LogFormatter::extractParameters() |
| 46 | + */ |
| 47 | + protected function extractParameters() { |
| 48 | + $params = parent::extractParameters(); |
| 49 | + |
| 50 | + if ( !empty( $params ) ) { |
| 51 | + $params[4] = $this->context->getLanguage()->listToText( (array)$params[4] ); |
| 52 | + } |
| 53 | + |
| 54 | + return $params; |
| 55 | + } |
42 | 56 | |
43 | 57 | } |
Index: trunk/extensions/EducationProgram/includes/EPArticleTable.php |
— | — | @@ -197,7 +197,26 @@ |
198 | 198 | ); |
199 | 199 | } |
200 | 200 | |
| 201 | + protected function addStudentRemovalControl() { |
201 | 202 | |
| 203 | + } |
| 204 | + |
| 205 | + protected function addArticleRemovalControl() { |
| 206 | + |
| 207 | + } |
| 208 | + |
| 209 | + protected function addReviwerRemovalControl() { |
| 210 | + |
| 211 | + } |
| 212 | + |
| 213 | + protected function addArticleAdittionControl() { |
| 214 | + |
| 215 | + } |
| 216 | + |
| 217 | + protected function addReviewerAdittionControl() { |
| 218 | + |
| 219 | + } |
| 220 | + |
202 | 221 | /** |
203 | 222 | * (non-PHPdoc) |
204 | 223 | * @see EPPager::getFormattedValue() |
Index: trunk/extensions/EducationProgram/includes/EPCourse.php |
— | — | @@ -691,7 +691,7 @@ |
692 | 692 | 'title' => $this->getTitle(), |
693 | 693 | 'parameters' => array( |
694 | 694 | '4::usercount' => count( $names ), |
695 | | - '5::users' => $GLOBALS['wgLang']->listToText( $names ) |
| 695 | + '5::users' => $names |
696 | 696 | ), |
697 | 697 | ); |
698 | 698 | |