Project

General

Profile

Bug #3754 » 3754_rev1.patch

krileon, 30 October 2012 19:08

View differences:

libraries/joomla/input/input.php
protected $data = array();
/**
* Input data2.
*
* @var array
* @since 11.1
*/
protected $data2 = array();
/**
* Input objects
*
* @var array
......
if (is_null($source))
{
$this->data = &$_REQUEST;
$this->data2 = &$_GET;
}
else
{
......
if (isset($this->data[$name]))
{
return;
}
if (isset($this->data2)) {
$this->data2[$name] = $value;
}
$this->data[$name] = $value;
(3-3/3)