diff options
author | Michael Cullum <unknownbliss@phpbbdevelopers.net> | 2012-02-11 21:12:36 +0000 |
---|---|---|
committer | Michael Cullum <unknownbliss@phpbbdevelopers.net> | 2012-06-17 19:07:09 +0100 |
commit | 53d846477665ea6b8a3463318f03050282aec89a (patch) | |
tree | f47a67a4695b1b4b1712776119d90bf33175a1e6 /phpBB/styles/subsilver2 | |
parent | 3b6ca178aa622fb1cc64c977fdc9eb47e3843cc7 (diff) | |
download | forums-53d846477665ea6b8a3463318f03050282aec89a.tar forums-53d846477665ea6b8a3463318f03050282aec89a.tar.gz forums-53d846477665ea6b8a3463318f03050282aec89a.tar.bz2 forums-53d846477665ea6b8a3463318f03050282aec89a.tar.xz forums-53d846477665ea6b8a3463318f03050282aec89a.zip |
[ticket/10640] Change maximum subject length
PHPBB3-10640
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/posting_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/quickreply_editor.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/subsilver2/template/posting_body.html b/phpBB/styles/subsilver2/template/posting_body.html index 712c02b856..ae7d2f88d6 100644 --- a/phpBB/styles/subsilver2/template/posting_body.html +++ b/phpBB/styles/subsilver2/template/posting_body.html @@ -173,7 +173,7 @@ <tr> <td class="row1" width="22%"><b class="genmed">{L_SUBJECT}:</b></td> - <td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->60<!-- ELSE -->64<!-- ENDIF -->" tabindex="2" value="{SUBJECT}" /></td> + <td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->120<!-- ELSE -->124<!-- ENDIF -->" tabindex="2" value="{SUBJECT}" /></td> </tr> <tr> <td class="row1" valign="top"><b class="genmed">{L_MESSAGE_BODY}:</b><br /><span class="gensmall">{L_MESSAGE_BODY_EXPLAIN} </span><br /><br /> diff --git a/phpBB/styles/subsilver2/template/quickreply_editor.html b/phpBB/styles/subsilver2/template/quickreply_editor.html index 4c3f7a3d0b..7a68a8f605 100644 --- a/phpBB/styles/subsilver2/template/quickreply_editor.html +++ b/phpBB/styles/subsilver2/template/quickreply_editor.html @@ -6,7 +6,7 @@ </tr> <tr> <td class="row1" width="22%"><b class="genmed">{L_SUBJECT}:</b></td> - <td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="64" tabindex="2" value="{SUBJECT}" /></td> + <td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="124" tabindex="2" value="{SUBJECT}" /></td> </tr> <tr> <td class="row1" width="22%"><b class="genmed">{L_MESSAGE}:</b></td> |