From: Alexander Ebert Date: Sat, 9 Mar 2013 16:44:57 +0000 (+0100) Subject: Forcing ucfirst instead of lcfirst for cache name X-Git-Tag: 2.0.0_Beta_1~433^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fbfdca7d8565990fa256cc6903ac256e6667b3e8;p=GitHub%2FWoltLab%2FWCF.git Forcing ucfirst instead of lcfirst for cache name --- diff --git a/wcfsetup/install/files/lib/system/cache/CacheHandler.class.php b/wcfsetup/install/files/lib/system/cache/CacheHandler.class.php index 51eca3fc5e..366add6f9f 100644 --- a/wcfsetup/install/files/lib/system/cache/CacheHandler.class.php +++ b/wcfsetup/install/files/lib/system/cache/CacheHandler.class.php @@ -107,7 +107,7 @@ class CacheHandler extends SingletonFactory { $cacheName .= '-' . $this->getCacheIndex($parameters); } - return $application . '_' . StringUtil::firstCharToLowerCase($cacheName); + return $application . '_' . StringUtil::firstCharToUpperCase($cacheName); } /**