diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-05-04 18:44:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-05-04 18:44:10 +0000 |
commit | f818eaf651b57ea32c869813c5c9b103ebf5e867 (patch) | |
tree | e1b7c53958270eb1c5994a8318522556a742ac69 /modules/search.module | |
parent | 3c55551559ef7b332862bda5f8ffa7ba196c4f01 (diff) | |
download | brdo-f818eaf651b57ea32c869813c5c9b103ebf5e867.tar.gz brdo-f818eaf651b57ea32c869813c5c9b103ebf5e867.tar.bz2 |
- Patch #47038 by DriesK: added a permission for advanced search.
Diffstat (limited to 'modules/search.module')
-rw-r--r-- | modules/search.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search.module b/modules/search.module index f061ed48a..e35e1a4d4 100644 --- a/modules/search.module +++ b/modules/search.module @@ -126,7 +126,7 @@ function search_help($section) { * Implementation of hook_perm(). */ function search_perm() { - return array('search content', 'administer search'); + return array('search content', 'use advanced search', 'administer search'); } /** |