Topic: Minor bug in the html markups of the file "edit.php"
On "edit.php" file, it lacks a <span></span> inside the <h2></h2> of the modification form <div class="blockform">, so it imposible to drive this title like the other pages (css). It create a différent layer in this page.
<div class="blockform">
<h2><?php echo $lang_post['Edit post'] ?></h2>
<div class="box">
It should be
<div class="blockform">
<h2><span><?php echo $lang_post['Edit post'] ?></span></h2>
<div class="box">
So the design wil be uniform in every pages.
But it's minor minor.
Personaly I changed it in my copy of PunBB, but now you know it, and you can correct it if you want.