Index: trunk/extensions/InputBox/InputBox.classes.php |
— | — | @@ -158,7 +158,7 @@ |
159 | 159 | |
160 | 160 | // Line break |
161 | 161 | $htmlOut .= $this->mBR; |
162 | | - } else if( $type == 'search') { |
| 162 | + } else if( $type == 'search' ) { |
163 | 163 | // Go button |
164 | 164 | $htmlOut .= Xml::element( 'input', |
165 | 165 | array( |
— | — | @@ -180,6 +180,12 @@ |
181 | 181 | 'value' => $this->mSearchButtonLabel |
182 | 182 | ) |
183 | 183 | ); |
| 184 | + |
| 185 | + // Hidden fulltext param for IE (bug 17161) |
| 186 | + if( $type == 'fulltext' ) { |
| 187 | + $htmlOut .= Xml::hidden( 'fulltext', 'Search' ); |
| 188 | + } |
| 189 | + |
184 | 190 | $htmlOut .= Xml::closeElement( 'form' ); |
185 | 191 | $htmlOut .= Xml::closeElement( 'div' ); |
186 | 192 | |