diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-15 20:42:58 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-15 20:42:58 +0000 |
commit | 5cc5b3f17f8c4bab7998dbaccc89f914accddf39 (patch) | |
tree | ed4ef9f479eb51e16dcda15e9f8ce14aabc8262d /engine/lib/entities.php | |
parent | 9c7b7c54635377def3bd48cfe8491dfb0e3b9b8a (diff) | |
download | elgg-5cc5b3f17f8c4bab7998dbaccc89f914accddf39.tar.gz elgg-5cc5b3f17f8c4bab7998dbaccc89f914accddf39.tar.bz2 |
Fixes #2860: Deprecated several registration functions that were using the 'callback-first' ordering
git-svn-id: http://code.elgg.org/elgg/trunk@8257 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r-- | engine/lib/entities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 61e732651..850ea5b41 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1876,7 +1876,7 @@ function elgg_register_entity_url_handler($entity_type, $entity_subtype, $functi * @link http://docs.elgg.org/Search * @link http://docs.elgg.org/Tutorials/Search */ -function register_entity_type($type, $subtype = null) { +function elgg_register_entity_type($type, $subtype = null) { global $CONFIG; $type = strtolower($type); |