]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Link.php
- Le agregue un parametro opcional al constructor de MECON_Dependencia para poder...
[mecon/meconlib.git] / lib / MECON / HTML / Link.php
index faadfc7ecd22aa1b9533881971812e529fc4f14b..b1835c194f8d46a05d74ac28aba8991e12835332 100644 (file)
@@ -170,18 +170,14 @@ class MECON_HTML_Link extends HTML_Common {
      * 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