Skip to content

Commit

Permalink
Merge pull request #5699 from BOINC/dpa_subject
Browse files Browse the repository at this point in the history
web: increase size of Subject field in message board create/edit form
  • Loading branch information
AenBleidd authored Jul 20, 2024
2 parents c522961 + 42dce6e commit 6316062
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/user/forum_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ function() use($content) {
if ($preview) {
row2(
tra("Title").bbcode_info(),
"<input type=\"text\" name=\"title\" value=\"".htmlspecialchars($title)."\">"
"<input type=\"text\" size=80 name=\"title\" value=\"".htmlspecialchars($title)."\">"
);
} else {
row2(
tra("Title").bbcode_info(),
'<input type="text" name="title" value="'.htmlspecialchars($thread->title).'">'
'<input type="text" size=80 name="title" value="'.htmlspecialchars($thread->title).'">'
);
}
};
Expand Down

0 comments on commit 6316062

Please sign in to comment.