summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-13 14:04:44 +0400
committerAndrew Dolgov <[email protected]>2011-12-13 14:04:44 +0400
commit56770001ddc0b6463f15db39896841b8781be2c6 (patch)
tree65864d015563bbbc4f4aa9dfdd361c127ac2c16f /modules
parent66665fba79c97dc3b96103e60945aedd0b9be676 (diff)
remove old help stuff
Diffstat (limited to 'modules')
-rw-r--r--modules/help.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/help.php b/modules/help.php
deleted file mode 100644
index 716a756dc..000000000
--- a/modules/help.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
- function module_help($link) {
-
- if (!$_REQUEST["noheaders"]) {
- print "<html><head>
- <title>".__('Help')."</title>
- <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
- <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
- </head><body>";
- }
-
- $tid = sprintf("%d", $_REQUEST["tid"]);
-
- if (file_exists("help/$tid.php")) {
- include("help/$tid.php");
- } else {
- print "<p>".__("Help topic not found.")."</p>";
- }
- print "<div align='center'>
- <button onclick=\"javascript:window.close()\">".
- __('Close this window')."</button></div>";
-
- if (!$_REQUEST["noheaders"]) {
- print "</body></html>";
- }
- }
-?>