From 6eaf31932003b53737c4cd45a50cd29b06955f3f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 17 Aug 2012 15:16:13 +0400 Subject: [PATCH] api: disable deprecated HTTP parameter support by default --- api/index.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/api/index.php b/api/index.php index 770e0978..2d555678 100644 --- a/api/index.php +++ b/api/index.php @@ -29,11 +29,17 @@ $input = file_get_contents("php://input"); - // Override $_REQUEST with JSON-encoded data if available - if ($input) { + if (defined('_API_DEBUG_HTTP_ENABLED') && _API_DEBUG_HTTP_ENABLED) { + // Override $_REQUEST with JSON-encoded data if available + // fallback on HTTP parameters + if ($input) { + $input = json_decode($input, true); + if ($input) $_REQUEST = $input; + } + } else { + // Accept JSON only $input = json_decode($input, true); - - if ($input) $_REQUEST = $input; + $_REQUEST = $input; } if ($_REQUEST["sid"]) { -- 2.39.2