diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 22:17:34 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 22:17:34 +0000 |
commit | 3e699017da34b994da17978b905e985c1927cec0 (patch) | |
tree | 977232dd61d1d06426e0389bc39a4eb6a50a166b /engine/classes | |
parent | 2141b3858b032493d38c95bf538b69fbc90c4f2a (diff) | |
download | elgg-3e699017da34b994da17978b905e985c1927cec0.tar.gz elgg-3e699017da34b994da17978b905e985c1927cec0.tar.bz2 |
Refs #3079: Making sure elgg_get_max_plugin_priority() returns 1 instead. Fixed problems when bootstrapping elgg plugins. Will perform tests against MySQL 5.5 when I have a real internet connection.
git-svn-id: http://code.elgg.org/elgg/trunk@8706 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes')
-rw-r--r-- | engine/classes/ElggPlugin.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engine/classes/ElggPlugin.php b/engine/classes/ElggPlugin.php index 208d1eff8..69b3b1c67 100644 --- a/engine/classes/ElggPlugin.php +++ b/engine/classes/ElggPlugin.php @@ -200,10 +200,6 @@ class ElggPlugin extends ElggObject { return false; } - if ($priority == $old_priority) { - return false; - } - // there's nothing above the max. if ($priority > $max_priority) { $priority = $max_priority; |