Commit 3e99d975 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Check "Store" when clicking on any inner INPUT. JM-73

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10868 b35dd754-fafc-0310-a699-88a17e54d16e
parent d9de1384
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
<tr valign="top"> <tr valign="top">
<td width="1%" nowrap> <td width="1%" nowrap>
<input type="radio" name="storeStrategy" value="<%= STORE_AND_BOUNCE%>" id="rb06" <input type="radio" name="storeStrategy" value="<%= STORE_AND_BOUNCE%>" id="rb06"
onclick="this.form.strategy[2].checked=true;" onclick="this.form.strategy[0].checked=true;"
<%= ((storeStrategy==STORE_AND_BOUNCE) ? "checked" : "") %>> <%= ((storeStrategy==STORE_AND_BOUNCE) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
<tr valign="top"> <tr valign="top">
<td width="1%" nowrap> <td width="1%" nowrap>
<input type="radio" name="storeStrategy" value="<%= ALWAYS_STORE %>" id="rb05" <input type="radio" name="storeStrategy" value="<%= ALWAYS_STORE %>" id="rb05"
onclick="this.form.strategy[2].checked=true;" onclick="this.form.strategy[0].checked=true;"
<%= ((storeStrategy==ALWAYS_STORE) ? "checked" : "") %>> <%= ((storeStrategy==ALWAYS_STORE) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
<tr valign="top"> <tr valign="top">
<td width="1%" nowrap> <td width="1%" nowrap>
<input type="radio" name="storeStrategy" value="<%= STORE_AND_DROP %>" id="rb07" <input type="radio" name="storeStrategy" value="<%= STORE_AND_DROP %>" id="rb07"
onclick="this.form.strategy[2].checked=true;" onclick="this.form.strategy[0].checked=true;"
<%= ((storeStrategy==STORE_AND_DROP) ? "checked" : "") %>> <%= ((storeStrategy==STORE_AND_DROP) ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
<fmt:message key="offline.messages.storage_limit" /> <fmt:message key="offline.messages.storage_limit" />
<input type="text" size="5" maxlength="12" name="quota" <input type="text" size="5" maxlength="12" name="quota"
value="<%= (quota>0 ? ""+format.format(quota) : "") %>" value="<%= (quota>0 ? ""+format.format(quota) : "") %>"
onclick="this.form.strategy[2].checked=true;"> onclick="this.form.strategy[0].checked=true;">
KB KB
</td> </td>
</tr> </tr>
......
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