Forcing ucfirst instead of lcfirst for cache name
authorAlexander Ebert <ebert@woltlab.com>
Sat, 9 Mar 2013 16:44:57 +0000 (17:44 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Sat, 9 Mar 2013 16:44:57 +0000 (17:44 +0100)
wcfsetup/install/files/lib/system/cache/CacheHandler.class.php

index 51eca3fc5eb0acbd5f41b277c5ae91f6a8843c87..366add6f9f4d4db554b31e1e06140ec8c9ef42fa 100644 (file)
@@ -107,7 +107,7 @@ class CacheHandler extends SingletonFactory {
                        $cacheName .= '-' . $this->getCacheIndex($parameters);
                }
                
-               return $application . '_' . StringUtil::firstCharToLowerCase($cacheName);
+               return $application . '_' . StringUtil::firstCharToUpperCase($cacheName);
        }
        
        /**