mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 13:54:02 -07:00
Fixed input types in some cases (#697)
This commit is contained in:
parent
d70f9d1602
commit
4ee8ac3aa6
2 changed files with 3 additions and 3 deletions
|
@ -175,7 +175,7 @@ tr.hl-tr:hover td { background-color: #CFC !important; }
|
|||
</tr>
|
||||
<tr>
|
||||
<td><h4>{L_RUN_ORDER}</h4></td>
|
||||
<td><input class="post" type="text" size="35" maxlength="255" name="run_order" value="{RUN_ORDER}" /></td>
|
||||
<td><input class="post" type="number" size="35" maxlength="255" name="run_order" value="{RUN_ORDER}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><h4>{L_LAST_RUN}</h4></td>
|
||||
|
@ -216,7 +216,7 @@ tr.hl-tr:hover td { background-color: #CFC !important; }
|
|||
</tr>
|
||||
<tr>
|
||||
<td><h4>{L_RUN_COUNTER}</h4></td>
|
||||
<td><input class="post" type="text" size="35" maxlength="255" name="run_counter" value="{RUN_COUNTER}" /></td>
|
||||
<td><input class="post" type="number" size="35" maxlength="255" name="run_counter" value="{RUN_COUNTER}" /></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" class="row1 tCenter">
|
||||
<p>{L_PRUNE_TOPICS_NOT_POSTED} <input class="post" type="text" name="prunedays" size="4" /> {L_DAYS}</p>
|
||||
<p>{L_PRUNE_TOPICS_NOT_POSTED} <input class="post" type="number" name="prunedays" size="4" /> {L_DAYS}</p>
|
||||
<p class="med"><label><input class="post" type="checkbox" name="prune_all_topic_types" value="1" />{L_DELETE_ALL_TOPICS}</label></p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue