diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-28 14:30:23 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-28 14:30:23 +0000 |
commit | 4711091be04584cdab4060a6ff4e0bea03bc00e9 (patch) | |
tree | 2c5c659547c0ffa32175480559e0b36c7d5f0687 /search | |
parent | 52dd8afa5be3dabcb49cd2a404acb57d6fefb98b (diff) | |
download | elgg-4711091be04584cdab4060a6ff4e0bea03bc00e9.tar.gz elgg-4711091be04584cdab4060a6ff4e0bea03bc00e9.tar.bz2 |
Subtypes and object types for search.
git-svn-id: https://code.elgg.org/elgg/trunk@742 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'search')
-rw-r--r-- | search/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/search/index.php b/search/index.php index cd5511b8b..36916b0d5 100644 --- a/search/index.php +++ b/search/index.php @@ -18,10 +18,12 @@ // Get input
$tag = get_input('tag');
$offset = get_input('offset',0);
+ $subtype = get_input('subtype');
+ $objecttype = get_input('object');
$body = "";
- if ($entities = get_entities_from_metadata("",$tag,"","",15,$offset)) {
+ if ($entities = get_entities_from_metadata("",$tag,"",$subtype,15,$offset)) {
foreach($entities as $entity) {
$body .= elgg_view_entity($entity);
|