Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Amf/Response/Http.php
Go to the documentation of this file.
00001 <?php
00024 require_once 'Zend/Amf/Response.php';
00025 
00034 class Zend_Amf_Response_Http extends Zend_Amf_Response
00035 {
00041     public function getResponse()
00042     {
00043         if (!headers_sent()) {
00044             header('Cache-Control: cache, must-revalidate');
00045             header('Pragma: public');
00046             header('Content-Type: application/x-amf');
00047         }
00048         return parent::getResponse();
00049     }
00050 }
 All Data Structures Namespaces Files Functions Variables Enumerations