summaryrefslogtreecommitdiff
path: root/modules/search.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-02-07 06:33:04 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-02-07 06:33:04 +0000
commit24a598a91224a4c8a2bf5e6723cb12d24e4a3cbf (patch)
treee73ae86b0d45e4753b98e92072bfb23890d1f34c /modules/search.module
parentd67a0503470dab86995196905494e47797ab0563 (diff)
downloadbrdo-24a598a91224a4c8a2bf5e6723cb12d24e4a3cbf.tar.gz
brdo-24a598a91224a4c8a2bf5e6723cb12d24e4a3cbf.tar.bz2
- #48028: Better search form compatibility for lanky IE submission
Diffstat (limited to 'modules/search.module')
-rw-r--r--modules/search.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search.module b/modules/search.module
index 34ac1ef98..a51a83f01 100644
--- a/modules/search.module
+++ b/modules/search.module
@@ -886,7 +886,7 @@ function search_view() {
// Search form submits with POST but redirects to GET. This way we can keep
// the search query URL clean as a whistle:
// search/type/keyword+keyword
- if (isset($_POST['op'])) {
+ if (isset($_POST['edit']['keys'])) {
if ($type == '') {
$type = 'node';
}