Browse Source

Fix [ and ] brackets and whitespace trimming

pull/40/head
Savetheinternet 13 years ago
parent
commit
ea06613d44
  1. 2
      inc/display.php

2
inc/display.php

@ -48,6 +48,8 @@
if(!preg_match('/\] $/', $body))
$body = '[' . $body . ']';
$body = trim($body);
return Array(
'top' => '<div class="boardlist">' . $body . '</div>',
'bottom' => '<div class="boardlist bottom">' . $body . '</div>'

Loading…
Cancel
Save