diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-11 00:17:24 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-11 00:17:24 +0000 |
commit | 8c756908c5d72a53b1a4dda0901c8fb3d0191408 (patch) | |
tree | 6bd991c1aa849a8ede753f0ae5942f3ad34cd617 /engine/lib | |
parent | 53391d961c8531c81363f4e7beae8ddefe6df800 (diff) | |
download | elgg-8c756908c5d72a53b1a4dda0901c8fb3d0191408.tar.gz elgg-8c756908c5d72a53b1a4dda0901c8fb3d0191408.tar.bz2 |
Fixes #2367: Corrected plugin hook documentation to maintain that the default priority is 500
git-svn-id: http://code.elgg.org/elgg/trunk@7287 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/elgglib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 26c6be743..02c94b8b4 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -918,7 +918,7 @@ function trigger_elgg_event($event, $object_type, $object = null) { * @param string $hook The name of the hook * @param string $type The type of the hook * @param callback $callback The name of a valid function or an array with object and method - * @param int $priority The priority - 0 is default, negative before, positive after + * @param int $priority The priority - 500 is default, lower numbers called first * * @return bool * |