Bug #3754 » 3754_rev1.patch
| 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;
 
   | 
||
- « Previous
 - 1
 - 2
 - 3
 - Next »