Greetings,
This patch is meant to lay the ground work for various efforts that are underway regarding the UI. It does this by converting the UI from using the $_GET and $_POST meta variables to $_REQUEST meta variables.
This patch replaces all instances of $_GET with $_REQUEST. By changing the meta variable from _GET / _POST to _REQUEST, we are making it a bit easier to begin various porting efforts. Majority of CMS interface systems use the POST method by default, whereas the current Zabbix implementation uses the GET method. With this patch in place we can begin to standardize certain logic checks without having to worry about wether the HTML request uses a POST or GET method.
From the end user's perspective there should be zero change with this patch, this is almost exclusively a PHP dev change.
This patch is meant to lay the ground work for various efforts that are underway regarding the UI. It does this by converting the UI from using the $_GET and $_POST meta variables to $_REQUEST meta variables.
This patch replaces all instances of $_GET with $_REQUEST. By changing the meta variable from _GET / _POST to _REQUEST, we are making it a bit easier to begin various porting efforts. Majority of CMS interface systems use the POST method by default, whereas the current Zabbix implementation uses the GET method. With this patch in place we can begin to standardize certain logic checks without having to worry about wether the HTML request uses a POST or GET method.
From the end user's perspective there should be zero change with this patch, this is almost exclusively a PHP dev change.
Comment