Topic: Simple one liner change to allow for more customization.
I had to edit admin_options.php to add in google adds at the top of every page. It ~could~ have been done with some sql editing, but having it this way makes more sence to me. Limiting the description of the board to 255 chars meens no extras at the top. Limiting the description to being one line (as an input type="text" field) meens that some javascript will cause errors in some browsers. I suggest making this change to allow the less php/html/sql savey administrators the ability to do the same thing I've done. Although you may want to check the limits of the different sql databases. I believe sqlite has limits to the length of a TEXT value, and possibly other databases have the same thing?
<td>
<!--<input type="textbox" name="form[board_desc]" size="50" maxlength="255" value="<?php echo pun_htmlspecialchars($pun_config['o_board_desc']) ?>" />-->
<textarea name="form[board_desc]" rows="6" cols="50"><?php echo pun_htmlspecialchars($pun_config['o_board_desc']) ?></textarea>
<span>A short description of this bulletin board (shown at the top of every page). This field may contain HTML.</span>
</td>