Skip to content

Commit

Permalink
Revert "Fixed input types in some cases (#697)"
Browse files Browse the repository at this point in the history
This reverts commit 4ee8ac3.
  • Loading branch information
belomaxorka committed Nov 24, 2023
1 parent 74aa6ff commit 20ce8ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions styles/templates/admin/admin_cron.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ tr.hl-tr:hover td { background-color: #CFC !important; }
</tr>
<tr>
<td><h4>{L_RUN_ORDER}</h4></td>
<td><input class="post" type="number" size="35" maxlength="255" name="run_order" value="{RUN_ORDER}" /></td>
<td><input class="post" type="text" size="35" maxlength="255" name="run_order" value="{RUN_ORDER}" /></td>
</tr>
<tr>
<td><h4>{L_LAST_RUN}</h4></td>
Expand Down Expand Up @@ -213,7 +213,7 @@ tr.hl-tr:hover td { background-color: #CFC !important; }
</tr>
<tr>
<td><h4>{L_RUN_COUNTER}</h4></td>
<td><input class="post" type="number" size="35" maxlength="255" name="run_counter" value="{RUN_COUNTER}" /></td>
<td><input class="post" type="text" size="35" maxlength="255" name="run_counter" value="{RUN_COUNTER}" /></td>
</tr>

<tr>
Expand Down
2 changes: 1 addition & 1 deletion styles/templates/admin/admin_forum_prune.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</tr>
<tr>
<td colspan="2" class="row1 tCenter">
<p>{L_PRUNE_TOPICS_NOT_POSTED} <input class="post" type="number" name="prunedays" size="4" /> {L_DAYS}</p>
<p>{L_PRUNE_TOPICS_NOT_POSTED} <input class="post" type="text" 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>
Expand Down

0 comments on commit 20ce8ca

Please sign in to comment.