diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-16 09:32:44 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-16 09:32:44 +0000 |
commit | 4a25dfa6b3e9fabfb1ac0a13b89e609a1b59f548 (patch) | |
tree | f97d534015b30d7885b59ee36c3e73f9db0db9d1 /search | |
parent | 02656d384074c068d7f50aaa3acaa160b5fbbba0 (diff) | |
download | elgg-4a25dfa6b3e9fabfb1ac0a13b89e609a1b59f548.tar.gz elgg-4a25dfa6b3e9fabfb1ac0a13b89e609a1b59f548.tar.bz2 |
Search once again displays results. Fixes #28
git-svn-id: https://code.elgg.org/elgg/trunk@926 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'search')
-rw-r--r-- | search/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/search/index.php b/search/index.php index 36916b0d5..da94ed493 100644 --- a/search/index.php +++ b/search/index.php @@ -23,7 +23,7 @@ $body = "";
- if ($entities = get_entities_from_metadata("",$tag,"",$subtype,15,$offset)) {
+ if ($entities = get_entities_from_metadata("",$tag,"",$subtype,0,15,$offset)) {
foreach($entities as $entity) {
$body .= elgg_view_entity($entity);
|