diff options
author | cash <cash.costello@gmail.com> | 2011-07-02 12:07:27 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-07-02 12:07:27 -0400 |
commit | c4a53af23533d44383a87b5180b15e1a01a0e18a (patch) | |
tree | 0072123e654c1c7886295e218f68be1403d1ea61 /engine/classes | |
parent | ae5ad0a65508725871159ffb6a068fcb2084aad7 (diff) | |
download | elgg-c4a53af23533d44383a87b5180b15e1a01a0e18a.tar.gz elgg-c4a53af23533d44383a87b5180b15e1a01a0e18a.tar.bz2 |
added logging to the web page footer
Diffstat (limited to 'engine/classes')
-rw-r--r-- | engine/classes/ElggPlugin.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/classes/ElggPlugin.php b/engine/classes/ElggPlugin.php index 95a7362e2..e46ac4273 100644 --- a/engine/classes/ElggPlugin.php +++ b/engine/classes/ElggPlugin.php @@ -700,6 +700,11 @@ class ElggPlugin extends ElggObject { // return false; // } + // include classes + if ($flags & ELGG_PLUGIN_REGISTER_CLASSES) { + $this->registerClasses(); + } + // include start file if ($flags & ELGG_PLUGIN_INCLUDE_START) { $this->includeFile('start.php'); @@ -715,11 +720,6 @@ class ElggPlugin extends ElggObject { $this->registerLanguages(); } - // include classes - if ($flags & ELGG_PLUGIN_REGISTER_CLASSES) { - $this->registerClasses(); - } - return true; } |