diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-11 23:50:18 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-11 23:50:18 +0000 |
commit | bff71b273807307eb8c726db04a6b641d4a91669 (patch) | |
tree | 0a804c6a80cf9209d6d76a3ce5ed7fad9074dcfc /mod/search | |
parent | 9ad2e7c3d4511c25a061e2b2459008b7b9cfd8aa (diff) | |
download | elgg-bff71b273807307eb8c726db04a6b641d4a91669.tar.gz elgg-bff71b273807307eb8c726db04a6b641d4a91669.tar.bz2 |
Fixed a few spelling mistakes.
Added descriptions for the vars in 3.2
git-svn-id: http://code.elgg.org/elgg/trunk@3798 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/search')
-rw-r--r-- | mod/search/README.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mod/search/README.txt b/mod/search/README.txt index 047ba10c2..301fe3d09 100644 --- a/mod/search/README.txt +++ b/mod/search/README.txt @@ -4,10 +4,10 @@ Full text search dev reference. * All entities are searched through title and description using MySQL's native fulltext search when possible, and LIKE %...% when not. - This can be overriden on a type/subtype basis. + This can be overridden on a type/subtype basis. * Entities are displayed in a standard list view consisting of a - title, blurb, and icon of the owning entity. This can be overriden + title, blurb, and icon of the owning entity. This can be overridden on a type/subtype basis. * Search is separated based upon types/subtypes pairs and any @@ -95,7 +95,7 @@ Full text search dev reference. * Search views are separate from the object/entity views because view types might not match entity types. - * The default search listing view interates through each entity + * The default search listing view iterates through each entity found and passes to the entity view. See 3.3 for more information about listing views. @@ -108,8 +108,8 @@ Full text search dev reference. * The following parameters are passed in $vars to the entity view by the default listing view: entity => The current returned entity - params => - results + results => The results from the search/type:subtype hook + params => The params passed to the search/type:subtype hook * Example: To create an entity view for an ElggObject of subtype blog, create a file called: @@ -182,4 +182,4 @@ Full text search dev reference. return array( 'count' => $count, 'entities' => array($entity) - );
\ No newline at end of file + ); |