Prechádzať zdrojové kódy

ZF-9108: remove rendered <br> in captcha image

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22583 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael 15 rokov pred
rodič
commit
a6a60ff121
1 zmenil súbory, kde vykonal 2 pridanie a 1 odobranie
  1. 2 1
      library/Zend/Captcha/Image.php

+ 2 - 1
library/Zend/Captcha/Image.php

@@ -595,6 +595,7 @@ class Zend_Captcha_Image extends Zend_Captcha_Word
      */
     public function render(Zend_View_Interface $view = null, $element = null)
     {
-        return '<img width="'.$this->getWidth().'" height="'.$this->getHeight().'" alt="'.$this->getImgAlt().'" src="' . $this->getImgUrl() . $this->getId() . $this->getSuffix() . '"/><br/>';
+        return '<img width="' . $this->getWidth() . '" height="' . $this->getHeight() . '" alt="' . $this->getImgAlt()
+             . '" src="' . $this->getImgUrl() . $this->getId() . $this->getSuffix() . '" />';
     }
 }