2009-03-23, 11:51 AM
(This post was last modified: 2009-03-23, 11:52 AM by frostschutz.)

works if you change search.php
elseif($mybb->input['action'] == "do_search" && $mybb->request_method == "post")
to
elseif($mybb->input['action'] == "do_search")
In theory it'd also be possible to do this in a plugin but it doesn't seem worth the effort.
External search plugins such as the Firefox quick search bar, do not need this modification, they can send this as post requests.