]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Link.php
Se agrega prefijo a los estilos de arbol.
[mecon/meconlib.git] / lib / MECON / HTML / Link.php
index c33269a3bcb9f8727285e2d09c5e6c260f2c62ff..faadfc7ecd22aa1b9533881971812e529fc4f14b 100644 (file)
@@ -126,10 +126,12 @@ class MECON_HTML_Link extends HTML_Common {
                     $vars[] = urlencode($var) . '=' . urlencode($v);
                 }
                 if ($vars) {
                     $vars[] = urlencode($var) . '=' . urlencode($v);
                 }
                 if ($vars) {
-                    $val = '?' . join('&', $vars);
+                    $val .= '?' . join('&', $vars);
                 }
                 }
+            } else {
+                $val = htmlentities($val);
             }
             }
-            $attrs .= ' ' . $key . '="' . htmlentities($val) . '"';
+            $attrs .= ' ' . $key . '="' . $val . '"';
         }
         return "<A$attrs>" . $this->getContents() . '</A>';
     }
         }
         return "<A$attrs>" . $this->getContents() . '</A>';
     }