Topic: Search results as posts small bug
In search.php, punbb doesn't add "..." when message is longer than 140 chars. It checks if message length is equal to 140, failing if longer.
if (pun_strlen($message) == 140)
change to
if (pun_strlen($message) >= 140)
I hope it helps
Sakis is my name, ssb just a nick.