From 6412797dfca86fc66ccb605461a374da9f66e056 Mon Sep 17 00:00:00 2001 From: mark_story Date: Thu, 16 Feb 2012 20:58:43 -0500 Subject: [PATCH] Add missing static. --- lib/Cake/Utility/CakeTime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Utility/CakeTime.php b/lib/Cake/Utility/CakeTime.php index 2e249daa14e..755e9474755 100644 --- a/lib/Cake/Utility/CakeTime.php +++ b/lib/Cake/Utility/CakeTime.php @@ -101,7 +101,7 @@ public static function convertSpecifiers($format, $time = null) { * @param array $specifier match from regular expression * @return string converted element */ - protected function _translateSpecifier($specifier) { + protected static function _translateSpecifier($specifier) { switch ($specifier[1]) { case 'a': $abday = __dc('cake', 'abday', 5);