keitaircメインレポジトリ
Revisión | 628ef4a9d3b69c34aa1583793ab3840077e23268 (tree) |
---|---|
Tiempo | 2011-04-15 14:48:19 |
Autor | ISHIKAWA Mutsumi <ishikawa@hanz...> |
Commiter | ISHIKAWA Mutsumi |
add maxlength to handle privmsg maxlength
@@ -13,9 +13,9 @@ | ||
13 | 13 | |
14 | 14 | <form action="<!-- tmpl_var cid -->" method="post"> |
15 | 15 | <tmpl_if is_mobile> |
16 | - <input type="text" name="m" size="10" /> | |
16 | + <input type="text" name="m" size="10" maxlength="165" /> | |
17 | 17 | <tmpl_else> |
18 | - <input type="text" name="m" /> | |
18 | + <input type="text" name="m" maxlength="165" /> | |
19 | 19 | </tmpl_if> |
20 | 20 | <input type="submit" accesskey="1" value="[1] 発言/更新" /> |
21 | 21 | <input type="hidden" name="stamp" value="<!-- tmpl_var stamp -->" /><br /> |
@@ -30,9 +30,9 @@ | ||
30 | 30 | |
31 | 31 | <form action="index" method="post"> |
32 | 32 | <tmpl_if is_mobile> |
33 | - <input type="text" name="m" size="10" /> | |
33 | + <input type="text" name="m" size="10" maxlength="165" /> | |
34 | 34 | <tmpl_else> |
35 | - <input type="text" name="m" /> | |
35 | + <input type="text" name="m" maxlength="165" /> | |
36 | 36 | </tmpl_if> |
37 | 37 | <input type="hidden" name="stamp" value="<!-- tmpl_var stamp -->" /> |
38 | 38 | <input type="submit" value="コマンド送信" /><br /> |
@@ -13,9 +13,9 @@ | ||
13 | 13 | |
14 | 14 | <form action="<!-- tmpl_var cid -->" method="post"> |
15 | 15 | <tmpl_if is_mobile> |
16 | - <input type="text" name="m" size="10" /> | |
16 | + <input type="text" name="m" size="10" maxlength="165" /> | |
17 | 17 | <tmpl_else> |
18 | - <input type="text" name="m" /> | |
18 | + <input type="text" name="m" maxlength="165" /> | |
19 | 19 | </tmpl_if> |
20 | 20 | <input type="submit" accesskey="1" value="[1] 発言/更新" /> |
21 | 21 | <input type="hidden" name="stamp" value="<!-- tmpl_var stamp -->" /><br /> |
@@ -9,7 +9,7 @@ | ||
9 | 9 | </div> |
10 | 10 | |
11 | 11 | <form action="all/<!-- tmpl_var cid -->" method="post" class="internal_form edit"> |
12 | - <input type="text" id="m" name="m" placeholder="発言" /> | |
12 | + <input type="text" id="m" name="m" placeholder="発言" maxlength="165" /> | |
13 | 13 | <input type="hidden" name="stamp" value="<!-- tmpl_var stamp -->" /> |
14 | 14 | </form> |
15 | 15 |
@@ -31,7 +31,7 @@ | ||
31 | 31 | </div> |
32 | 32 | |
33 | 33 | <form action="index" method="post" class="internal_form edit bottom"> |
34 | - <input type="text" id="m_c" name="m" placeholder="IRCコマンド" autocomplete="on" /> | |
34 | + <input type="text" id="m_c" name="m" placeholder="IRCコマンド" autocomplete="on" maxlength="165" /> | |
35 | 35 | <input type="hidden" name="stamp" value="<!-- tmpl_var stamp -->" /> |
36 | 36 | </form> |
37 | 37 |