From: Leandro Lucarella Date: Thu, 28 Aug 2003 19:30:34 +0000 (+0000) Subject: El contenido no se agrega mas como referencia. X-Git-Tag: svn_import~283 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/097b3e8fb39d207f826dc6db5907852b38150fd1 El contenido no se agrega mas como referencia. --- diff --git a/lib/MECON/HTML/Link.php b/lib/MECON/HTML/Link.php index 75f5d35..c33269a 100644 --- a/lib/MECON/HTML/Link.php +++ b/lib/MECON/HTML/Link.php @@ -226,13 +226,9 @@ If they doesn't exists, they are added, if they exists, they are updated. * @return void * @access public */ - function addContents(&$contents) // ~X2C + function addContents($contents) // ~X2C { - if (is_object($contents)) { - $this->_contents[] =& $contents; - } else { - $this->_contents[] = $contents; - } + $this->_contents[] = $contents; } // -X2C @@ -264,9 +260,10 @@ If they doesn't exists, they are added, if they exists, they are updated. */ function setContents($contents) // ~X2C { - $this->_contents = $contents; + $this->_contents = array($contents); } // -X2C } // -X2C Class :MECON_HTML_Link + ?> \ No newline at end of file