MyBB Community Forums

Full Version: HTML bug in modcp template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This bug has originally been posted at the German support forum:
https://www.mybb.de/forum/thread-32024.html

modcp template
<tr>
<td class="tcat"><span class="smalltext"><strong>{$lang->notes_public_all}</strong></span>
</td>
<tr>
<td class="trow1"><textarea name="modnotes" style="width: 99%; height: 200px;" rows="5" cols="45">{$modnotes}</textarea></td>
</tr>
should be
<tr>
<td class="tcat"><span class="smalltext"><strong>{$lang->notes_public_all}</strong></span></td>
</tr>
<tr>
<td class="trow1"><textarea name="modnotes" style="width: 99%; height: 200px;" rows="5" cols="45">{$modnotes}</textarea></td>
</tr>
Nice catch.
Hi,

Thank you for your report. We have pushed this issue to our Github repository for further analysis where you can track our commits and progress with fixing this bug. Discussions regarding this bug may also take place there too.

Follow this link to visit the issue on Github: https://github.com/mybb/mybb/issues/1986

Thanks for contributing to MyBB!

Regards,
The MyBB Group