* Set a GET variable.
*
* @param string $key Key for the GET variable.
- * @param mixed &$value Value for the variable.
+ * @param mixed $value Value for the variable.
*
* @return void
* @access public
*/
- function setGetVar($key, &$value) // ~X2C
+ function setGetVar($key, $value) // ~X2C
{
- if (is_object($value)) {
- $this->attrs[$key] =& $value;
- } else {
- $this->attrs[$key] = $value;
- }
+ $this->_getVars[$key] = $value;
}
// -X2C