This Patch adds a HTML notice beside the search field
- Define a new global variable: use vars qw($SearchNote?);
- Configuration of this variable: $SearchNote? = "<SMALL>You can search with <A HREF='?RegularExpressions?'>RegularExpressions?</A>, i.e. 'germany.*burg'!</SMALL>"; # HTML notice beside the search field
- Locate the sub GetSearchForm
- Addition the the $result line: $result = T('Search:') . ' ' . $q->textfield(-name=>'search', -size=>20) . ' ' . $SearchNote?
- Save - done!