Skip to content

Commit

Permalink
Fixes a bug that breaks P2H when the forum name is greater than 28 ch…
Browse files Browse the repository at this point in the history
…aracters. Since the forum name is only for internal use and has no impact on end-user or P2H function I decided it was best to limit the HTML field rather than coding a check into the PHP.
  • Loading branch information
KuJoe committed Jun 6, 2010
1 parent 6665345 commit 2eba580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/tpl/addforum.tpl
Expand Up @@ -26,7 +26,7 @@ function changePrefix(value)
<tr>
<td>Forum Name:</td>
<td><label>
<input name="name" type="text" class="form" id="name" />
<input name="name" type="text" class="form" id="name" maxlength="28"/>
</label></td>
</tr>
<tr>
Expand Down

0 comments on commit 2eba580

Please sign in to comment.