2015-08-09 20:11:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author markus
|
|
|
|
* $Id: plugin.charsetheader.php 13 2009-11-24 14:52:56Z markus $
|
|
|
|
*/
|
|
|
|
class CharsetHeader extends Zend_Controller_Plugin_Abstract {
|
2015-08-09 17:12:51 +00:00
|
|
|
public function preDispatch(Zend_Controller_Request_Abstract $request) {
|
|
|
|
$response = $this->getResponse();
|
|
|
|
if ($response->canSendHeaders() === true) {
|
|
|
|
$response->setHeader('Content-Type', 'text/html; charset=utf-8');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|