Procházet zdrojové kódy

Zend_Tool_Framework_Client_Response::setContent() - fixes appended content

Appended content was not decorated
Morith MY před 12 roky
rodič
revize
5c79999441
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);