From 9944713b402330533fa56f31cc8391c84a90c4c8 Mon Sep 17 00:00:00 2001 From: Evan Coury Date: Wed, 29 Feb 2012 07:36:47 -0700 Subject: [PATCH] Remove date('Y') call in layout Replaced with static year. For some reason the date() function in PHP is shockingly slow (3+ms on an i5) which is like 8% of the runtime in an optimized benchmark. --- module/Application/view/layout/layout.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/Application/view/layout/layout.phtml b/module/Application/view/layout/layout.phtml index 1831fbb..622c108 100644 --- a/module/Application/view/layout/layout.phtml +++ b/module/Application/view/layout/layout.phtml @@ -63,7 +63,7 @@ echo $this->doctype();
-- 1.7.10.4