Index: trunk/extensions/EducationProgram/EducationProgram.hooks.php |
— | — | @@ -171,12 +171,12 @@ |
172 | 172 | * @param SkinTemplate $sktemplate |
173 | 173 | * @param array $links |
174 | 174 | * |
175 | | - * @return true |
| 175 | + * @return false |
176 | 176 | */ |
177 | 177 | public static function onPageTabs( SkinTemplate &$sktemplate, array &$links ) { |
178 | 178 | self::displayTabs( $sktemplate, $links, $sktemplate->getTitle() ); |
179 | 179 | |
180 | | - return true; |
| 180 | + return false; |
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
— | — | @@ -188,7 +188,7 @@ |
189 | 189 | * @param SkinTemplate $sktemplate |
190 | 190 | * @param array $links |
191 | 191 | * |
192 | | - * @return true |
| 192 | + * @return false |
193 | 193 | */ |
194 | 194 | public static function onSpecialPageTabs( SkinTemplate &$sktemplate, array &$links ) { |
195 | 195 | $textParts = SpecialPageFactory::resolveAlias( $sktemplate->getTitle()->getText() ); |
— | — | @@ -212,7 +212,7 @@ |
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
216 | | - return true; |
| 216 | + return false; |
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |