diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-24 21:32:03 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-24 21:44:43 -0500 |
commit | 5a3390fbb42a787f7c2ba4f13b6a6843d9a90c7b (patch) | |
tree | 476d707a3ecd3b2dc0ca43b3692a0257234ff66a /engine/lib/configuration.php | |
parent | 38679b40b4234a4739e14ba418d1cd82110bd02c (diff) | |
download | elgg-5a3390fbb42a787f7c2ba4f13b6a6843d9a90c7b.tar.gz elgg-5a3390fbb42a787f7c2ba4f13b6a6843d9a90c7b.tar.bz2 |
Fixes #4272 where an array of entity types can be used, use array in config object
Diffstat (limited to 'engine/lib/configuration.php')
-rw-r--r-- | engine/lib/configuration.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engine/lib/configuration.php b/engine/lib/configuration.php index 772c24930..7f787331f 100644 --- a/engine/lib/configuration.php +++ b/engine/lib/configuration.php @@ -613,4 +613,7 @@ function _elgg_load_application_config() { $viewtype = get_input('view', 'default'); $lastcached = datalist_get("simplecache_lastcached_$viewtype"); $CONFIG->lastcache = $lastcached; + + // this must be synced with the enum for the entities table + $CONFIG->entity_types = array('group', 'object', 'site', 'user'); } |