summaryrefslogtreecommitdiff
path: root/includes/specials/SpecialBlankpage.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/specials/SpecialBlankpage.php')
-rw-r--r--includes/specials/SpecialBlankpage.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/specials/SpecialBlankpage.php b/includes/specials/SpecialBlankpage.php
new file mode 100644
index 00000000..fdabe49d
--- /dev/null
+++ b/includes/specials/SpecialBlankpage.php
@@ -0,0 +1,6 @@
+<?php
+
+function wfSpecialBlankpage() {
+ global $wgOut;
+ $wgOut->addHTML(wfMsg('intentionallyblankpage'));
+}