1 (edited by ssb 2004-03-09 14:03)

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 smile

Sakis is my name, ssb just a nick.

Re: Search results as posts small bug

That's right ;)

Re: Search results as posts small bug

Nice find :)

"Programming is like sex: one mistake and you have to support it for the rest of your life."