From 351452fab32b7ce2459e9a945bfd7e777b69b8d3 Mon Sep 17 00:00:00 2001 From: Nick Jenkins Date: Tue, 9 Jan 2007 09:51:53 +0000 Subject: [PATCH] One more E_STRICT warning tweak for http://192.168.0.64/wiki/index.php?action=ajax (i.e. no 'rs' argument supplied) : * Strict Standards: Undefined index: rs in includes/AjaxDispatcher.php on line 38 Q: Should / could the AjaxDispatcher constructor maybe be using the $wgRequest global instead of accessing $_POST and $_GET directly? --- includes/AjaxDispatcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/AjaxDispatcher.php b/includes/AjaxDispatcher.php index 89062f8770..1f41a83f70 100644 --- a/includes/AjaxDispatcher.php +++ b/includes/AjaxDispatcher.php @@ -28,14 +28,14 @@ class AjaxDispatcher { } if ($this->mode == "get") { - $this->func_name = $_GET["rs"]; + $this->func_name = isset( $_GET["rs"] ) ? $_GET["rs"] : ''; if (! empty($_GET["rsargs"])) { $this->args = $_GET["rsargs"]; } else { $this->args = array(); } } else { - $this->func_name = $_POST["rs"]; + $this->func_name = isset( $_POST["rs"] ) ? $_POST["rs"] : ''; if (! empty($_POST["rsargs"])) { $this->args = $_POST["rsargs"]; } else { -- 2.20.1