Index: trunk/extensions/LandingCheck/SpecialLandingCheck.php |
— | — | @@ -188,6 +188,11 @@ |
189 | 189 | return; |
190 | 190 | } |
191 | 191 | } |
| 192 | + |
| 193 | + # Output a simple error message if no pages were found |
| 194 | + $this->setHeaders(); |
| 195 | + $this->outputHeader(); |
| 196 | + $wgOut->addWikiMsg( 'landingcheck-nopage' ); |
192 | 197 | } |
193 | 198 | |
194 | 199 | /** |
Index: trunk/extensions/LandingCheck/LandingCheck.i18n.php |
— | — | @@ -14,6 +14,7 @@ |
15 | 15 | $messages['en'] = array( |
16 | 16 | 'landingcheck-desc' => 'Facilitates the use of geotargeted localized landing pages', |
17 | 17 | 'landingcheck' => 'LandingCheck', |
| 18 | + 'landingcheck-nopage' => 'No pages were found while performing the request.', |
18 | 19 | ); |
19 | 20 | |
20 | 21 | /** Message documentation (Message documentation) |