]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Cuando se llamaba a HTML_Image::updateAttributes se estaban pasando mal los atributos.
authorGonzalo Merayo <merayo@gmail.com>
Tue, 1 Jul 2003 14:16:21 +0000 (14:16 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Tue, 1 Jul 2003 14:16:21 +0000 (14:16 +0000)
lib/MECON/Marco/ImagenAnimada.php

index a2b01c9246cb3704fa9e3463d928708420971689..2e22315ec87c602da56084284915488690b939cd 100644 (file)
@@ -195,7 +195,7 @@ class ImagenAnimada {
     {
         $img = new HTML_Image(array('name' => $this->getName(), 'border' => 0));
         $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
-        $img->updateAttributes('src' => $src);
+        $img->updateAttributes(array ('src' => $src) );
         $html = $img->toHtml();
         if ($this->getHabilitada()) {
             if ($this->getSeleccionada()) {