Commit 232f77fd authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed several small issues.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4847 b35dd754-fafc-0310-a699-88a17e54d16e
parent d61aa773
......@@ -44,8 +44,9 @@
Search Plugin Changelog
</h1>
<p><b>1.1.7</b> -- August 7, 2006</p>
<p><b>1.2.0</b> -- August 7, 2006</p>
<ul>
<li>Modified search field to be required in the data form. Thanks to Alexander Gnauck.</li>
<li>Fixed error when sent IQ packet has no type. Thanks to Alexander Gnauck.</li>
<li>Fixed error when sent IQ packet was of type ERROR or RESULT.</li>
<li>Fixed error when sent IQ packet contained data form fields with no values. Thanks to Alexander Gnauck.</li>
......
......@@ -5,7 +5,7 @@
<name>Search</name>
<description>Provides support for Jabber Search (JEP-0055)</description>
<author>Ryan Graham</author>
<version>1.1.7</version>
<version>1.2.0</version>
<date>07/08/2006</date>
<minServerVersion>2.4.0</minServerVersion>
......
......@@ -136,7 +136,7 @@ public class SearchPlugin implements Component, Plugin, PropertyEventListener {
field = new XFormFieldImpl("search");
field.setType(FormField.TYPE_TEXT_SINGLE);
field.setLabel("Search");
field.setRequired(false);
field.setRequired(true);
searchForm.addField(field);
for (String searchField : searchFields) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment