aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-05-28 15:23:58 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-05-28 15:23:58 +0000
commitb7ae2062b48055b23176000691fe454f6f67f5e9 (patch)
tree4b56a55030c141b883b021f5df21c0625f0f662c /engine/lib/entities.php
parent39dfeae3037782f8bd3dc2b5aa6e2da8ff65c63b (diff)
downloadelgg-b7ae2062b48055b23176000691fe454f6f67f5e9.tar.gz
elgg-b7ae2062b48055b23176000691fe454f6f67f5e9.tar.bz2
Refs #965: Search now correctly using page handler to make it easier to replace.
git-svn-id: https://code.elgg.org/elgg/trunk@3308 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php17
1 files changed, 2 insertions, 15 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index d0935adf2..c8457ca39 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -2352,19 +2352,6 @@
}
}
-/**
- * Page handler for search
- *
- * @param array $page Page elements from pain page handler
- */
- function search_page_handler($page) {
- if (isset($page[0])) {
- global $CONFIG;
- set_input('tag',$page[0]);
- include_once($CONFIG->path . "search/index.php");
- }
- }
-
/**
* Returns a viewable list of entities based on the registered types
*
@@ -2771,9 +2758,9 @@
* Entities init function; establishes the page handler
*
*/
- function entities_init() {
+ function entities_init()
+ {
register_page_handler('view','entities_page_handler');
- register_page_handler('search','search_page_handler');
// Allow a permission override for recursive entity deletion
// TODO: Can this be done better?