Index: libraries/joomla/input/input.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- libraries/joomla/input/input.php +++ libraries/joomla/input/input.php @@ -58,6 +58,14 @@ protected $data = array(); /** + * Input data2. + * + * @var array + * @since 11.1 + */ + protected $data2 = array(); + + /** * Input objects * * @var array @@ -87,6 +95,7 @@ if (is_null($source)) { $this->data = &$_REQUEST; + $this->data2 = &$_GET; } else { @@ -241,6 +250,10 @@ if (isset($this->data[$name])) { return; + } + + if (isset($this->data2)) { + $this->data2[$name] = $value; } $this->data[$name] = $value;