From: Andrey Kutejko Date: Tue, 30 Jul 2013 16:09:52 +0000 (+0300) Subject: remove redundand class X-Git-Url: https://git.andy128k.dev/?a=commitdiff_plain;h=5f9ce3f220a6345b55d79a19cb1de3588f568932;p=ipf-template.git remove redundand class --- diff --git a/ipf/template/context/request.php b/ipf/template/context/request.php deleted file mode 100644 index 1d4684d..0000000 --- a/ipf/template/context/request.php +++ /dev/null @@ -1,18 +0,0 @@ - $request), $vars); - foreach (IPF::get('template_context_processors', array()) as $proc) { - IPF::loadFunction($proc); - $vars = array_merge($proc($request), $vars); - } - foreach (IPF_Project::getInstance()->appList() as $app) { - $vars = array_merge($app->templateContext($request), $vars); - } - parent::__construct($vars); - } -} -