]> git.llucax.com Git - mecon/meconlib.git/blobdiff - pear_lib_tmp/HTML/Link.php
Se saca el border=0 por default, eso se maneja con las style sheets.
[mecon/meconlib.git] / pear_lib_tmp / HTML / Link.php
index 2059785bf593a6320d81e5111974e06faa850eba..6e508ae31d1bbc16aae388d00aa8b60254b4a849 100644 (file)
@@ -127,7 +127,7 @@ class HTML_Link extends HTML_Common {
             }
             $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
         }
-        return "<A$attrs>" . htmlentities($this->getContents()) . '</A>';
+        return "<A$attrs>" . $this->getContents() . '</A>';
     }
     // -X2C
 
@@ -244,7 +244,7 @@ If they doesn't exists, they are added, if they exists, they are updated.
             if (is_object($c) and method_exists($c, 'tohtml')) {
                 $html .= $c->toHtml();
             } else {
-                $html .= $c;
+                $html .= htmlentities($c);
             }
         }
         return $html;