diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-15 00:42:44 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-15 00:42:44 +0000 |
commit | 782fd909b042740f736b8c668f74d47a43f703f3 (patch) | |
tree | 2898c2ee772f3654dde8fb9e4374a10dfaef9eac /mod/reportedcontent | |
parent | a3107496e7d539200e3f815d5ab06d0ec1c93d62 (diff) | |
download | elgg-782fd909b042740f736b8c668f74d47a43f703f3.tar.gz elgg-782fd909b042740f736b8c668f74d47a43f703f3.tar.bz2 |
Replaced all occurrences of register_page_handler in core with elgg_register_page_handler
git-svn-id: http://code.elgg.org/elgg/trunk@8244 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent')
-rw-r--r-- | mod/reportedcontent/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php index 9e5bb813a..eba1b13a1 100644 --- a/mod/reportedcontent/start.php +++ b/mod/reportedcontent/start.php @@ -13,7 +13,7 @@ elgg_register_event_handler('init', 'system', 'reportedcontent_init'); function reportedcontent_init() { // Register a page handler, so we can have nice URLs - register_page_handler('reportedcontent', 'reportedcontent_page_handler'); + elgg_register_page_handler('reportedcontent', 'reportedcontent_page_handler'); // Extend CSS elgg_extend_view('css/screen', 'reportedcontent/css'); |