Ver código fonte

Merge pull request #118 from Morith/master

Zend_Tool_Framework_Client_Response::setContent() - appended content is not decorated
Frank Brückner 12 anos atrás
pai
commit
250069bf66
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      library/Zend/Tool/Framework/Client/Response.php

+ 1 - 1
library/Zend/Tool/Framework/Client/Response.php

@@ -77,7 +77,7 @@ class Zend_Tool_Framework_Client_Response
      */
     public function setContent($content, Array $decoratorOptions = array())
     {
-        $this->_applyDecorators($content, $decoratorOptions);
+        $content = $this->_applyDecorators($content, $decoratorOptions);
 
         $this->_content = array();
         $this->appendContent($content);