From b4e75b2a25d0a30d77b2160c8195835c9816cfe0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 29 Dec 2009 18:49:27 +0300 Subject: use POST parameters for frontend requests --- modules/help.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/help.php') diff --git a/modules/help.php b/modules/help.php index 415870d45..64ec087bb 100644 --- a/modules/help.php +++ b/modules/help.php @@ -1,7 +1,7 @@ ".__('Help')." @@ -9,7 +9,7 @@ "; } - $tid = sprintf("%d", $_GET["tid"]); + $tid = sprintf("%d", $_REQUEST["tid"]); if (file_exists("help/$tid.php")) { include("help/$tid.php"); @@ -21,7 +21,7 @@ onclick=\"javascript:window.close()\" value=\"".__('Close this window')."\">"; - if (!$_GET["noheaders"]) { + if (!$_REQUEST["noheaders"]) { print ""; } } -- cgit v1.2.3-54-g00ecf