On 4/16/08, Denis Fohl <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> in comments to this tutorial :
> http://codeutopia.net/blog/2008/03/17/introduction-to-zend_layout-updated-for-zf-15/
>
> Matthew said : "I'd recommend calling the doctype() helper with the
> doctype you want from your bootstrap. "
>
> how to do that ?
I currently do it like this:
$viewRenderer =
Zend_Controller_Action_HelperBroker::getStaticHelper('ViewRenderer');
$view = new Zend_View(array('encoding' => 'utf-8'));
$view->doctype('XHTML1_STRICT');
$viewRenderer->setView($view);
Thanks.
>
> --
> Denis
>
>
--
Vincent