BUGFIX: Fixed bug in r93095 (from r93097) (from r96750)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102379 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-04-12 02:41:02 +00:00
parent 08075929ba
commit e362790abd

View File

@ -1421,7 +1421,7 @@ class Translatable extends DataObjectDecorator implements PermissionProvider {
* Return a piece of text to keep DataObject cache keys appropriately specific
*/
function cacheKeyComponent() {
return 'locale-'.self::get_current_locale()();
return 'locale-'.self::get_current_locale();
}
}