<?php

class Application_Controller_Action_Plugin_Authorize extends Nmc_Controller_Action_Plugin_Authorize
{
    public function unauthorizedAction()
    {
        header('HTTP/1.0 403 Forbidden');
        $out = new Application_View();
        $out->page = '403';
        $out->title = '403 Access Denied';
        echo $out->render('unlModernWrapper.xhtml');
    }
}