From ef8be8ea8da90596d321bc25e88c48121715ed18 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 1 Oct 2006 11:05:20 +0100 Subject: split backend.php into modules, backend cleanups --- modules/help.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 modules/help.php (limited to 'modules/help.php') diff --git a/modules/help.php b/modules/help.php new file mode 100644 index 000000000..90c63cfb8 --- /dev/null +++ b/modules/help.php @@ -0,0 +1,36 @@ + + Tiny Tiny RSS : Help + + + + + "; + } + + $tid = sprintf("%d", $_GET["tid"]); + + print "
Help
"; + + print "
"; + + if (file_exists("help/$tid.php")) { + include("help/$tid.php"); + } else { + print "

Help topic not found.

"; + } + + print "
"; + + print "
+
"; + + if (!$_GET["noheaders"]) { + print ""; + } + } +?> -- cgit v1.2.3-54-g00ecf