Index: trunk/extensions/EducationProgram/EducationProgram.i18n.php |
— | — | @@ -243,6 +243,7 @@ |
244 | 244 | 'ep-mycourses-course-title' => 'My courses: $1 at $2', |
245 | 245 | 'specialmycourses-summary-name' => 'Course name', |
246 | 246 | 'specialmycourses-summary-org' => 'Institution name', |
| 247 | + 'ep-mycourses-not-a-student' => 'You are not enrolled in any [[Special:Courses|courses]].', |
247 | 248 | ); |
248 | 249 | |
249 | 250 | /** Message documentation (Message documentation) |
Index: trunk/extensions/EducationProgram/EducationProgram.php |
— | — | @@ -99,6 +99,7 @@ |
100 | 100 | $wgSpecialPages['EditInstitution'] = 'SpecialEditInstitution'; |
101 | 101 | $wgSpecialPages['EditTerm'] = 'SpecialEditTerm'; |
102 | 102 | $wgSpecialPages['Enroll'] = 'SpecialEnroll'; |
| 103 | +$wgSpecialPages['Ambassadors'] = 'SpecialAmbassadors'; |
103 | 104 | |
104 | 105 | $wgSpecialPageGroups['MyCourses'] = 'education'; |
105 | 106 | $wgSpecialPageGroups['Institution'] = 'education'; |
— | — | @@ -113,6 +114,7 @@ |
114 | 115 | $wgSpecialPageGroups['EditCourse'] = 'education'; |
115 | 116 | $wgSpecialPageGroups['EditInstitution'] = 'education'; |
116 | 117 | $wgSpecialPageGroups['EditTerm'] = 'education'; |
| 118 | +$wgSpecialPageGroups['Ambassadors'] = 'education'; |
117 | 119 | |
118 | 120 | // DB object classes |
119 | 121 | $egEPDBObjects = array(); |