diff options
author | cash <cash.costello@gmail.com> | 2012-02-04 13:05:31 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2012-02-04 13:05:31 -0500 |
commit | 601ec5ccf5eb6940ca468b31e1b400412697c8cb (patch) | |
tree | 639b9d1d3591d61c86808a60fe354bce811ce52e /engine/lib/configuration.php | |
parent | 76d089fe3662a7051258d6d1843a1167ea8017b1 (diff) | |
parent | 06ba6ccfb8bb5a8da8464d8f86454b468744c9cc (diff) | |
download | elgg-601ec5ccf5eb6940ca468b31e1b400412697c8cb.tar.gz elgg-601ec5ccf5eb6940ca468b31e1b400412697c8cb.tar.bz2 |
Merge pull request #156 from cash/cache_lang
Fixes #2877 Adds language string caching to system cache
Diffstat (limited to 'engine/lib/configuration.php')
-rw-r--r-- | engine/lib/configuration.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engine/lib/configuration.php b/engine/lib/configuration.php index d32a5c4b6..9bf1529d6 100644 --- a/engine/lib/configuration.php +++ b/engine/lib/configuration.php @@ -614,6 +614,8 @@ function _elgg_load_application_config() { $lastcached = datalist_get("simplecache_lastcached_$viewtype"); $CONFIG->lastcache = $lastcached; + $CONFIG->i18n_loaded_from_cache = false; + // this must be synced with the enum for the entities table $CONFIG->entity_types = array('group', 'object', 'site', 'user'); } |