diff options
author | cash <cash.costello@gmail.com> | 2013-03-16 13:32:02 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2013-03-16 13:32:02 -0400 |
commit | 36755bea9aefd7e8bf54deab7b29902f8733f9aa (patch) | |
tree | 81dadfcb7536e900c48207ad1b365479b3d5d081 /engine/lib | |
parent | c79f4894d5e4bf88023e286dc03259cfa3f98414 (diff) | |
download | elgg-36755bea9aefd7e8bf54deab7b29902f8733f9aa.tar.gz elgg-36755bea9aefd7e8bf54deab7b29902f8733f9aa.tar.bz2 |
engine now is standards compliant
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/plugins.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 6fc000cf9..74bce45fd 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -312,10 +312,10 @@ function elgg_is_active_plugin($plugin_id, $site_guid = null) { */ function elgg_load_plugins() { $plugins_path = elgg_get_plugins_path(); - $start_flags = ELGG_PLUGIN_INCLUDE_START - | ELGG_PLUGIN_REGISTER_VIEWS - | ELGG_PLUGIN_REGISTER_LANGUAGES - | ELGG_PLUGIN_REGISTER_CLASSES; + $start_flags = ELGG_PLUGIN_INCLUDE_START | + ELGG_PLUGIN_REGISTER_VIEWS | + ELGG_PLUGIN_REGISTER_LANGUAGES | + ELGG_PLUGIN_REGISTER_CLASSES; if (!$plugins_path) { return false; |