]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Link.php
- Correccion de bugs
[mecon/meconlib.git] / lib / MECON / HTML / Link.php
index 1252dffb9641e9f39c5b621bbb6e449da5dbe30d..08e527521e41a58028876e641048c5f2461b69c6 100644 (file)
@@ -170,7 +170,10 @@ If they doesn't exists, they are added, if they exists, they are updated.
      */
     function updateGetVars($vars)
     {
-        $this->_getVars += $vars;
+        foreach ($vars as $key => $value) 
+        {
+            $this->_getVars[$key] = $value;
+        }
     }
 
     /**
@@ -193,13 +196,19 @@ If they doesn't exists, they are added, if they exists, they are updated.
      * Adds contents to the link.
      *
      * @param  mixed &$contents Contents to add. Can be an object with a toHtml() method.
+     * @param  bool  $front     Tells where to put the new content.
      *
      * @return void
      * @access public
      */
-    function addContents($contents)
+    function addContents($contents, $front = false)
     {
-        $this->_contents[] = $contents;
+        if ($front) {
+            array_unshift($this->_contents, $contents);
+        }
+        else {
+            $this->_contents[] = $contents;
+        }
     }
 
     /**