Well, there's a difference between unverified users and verified with 0 posts. Some forums require registration to view the forum: and some people never post, just read.

Really? It works perfectly fine in IE and Firefox...

OK then, mind if I fix it and post it here for anyone interested? tongue

Edit: for anyone interested...

Find:
echo '</span></h2><div class="box"><div class="inbox"><table cellspacing="0"><thead><tr>';

Replace with
echo '</span></h2><div class="box"><div class="inbox"><div class="scrollbox"><table cellspacing="0"><thead><tr>';

Find:
echo '</tbody></table></div></div></div>';

Replace with:
echo '</tbody></table></div></div></div></div>';

And for anyone who wants to get rid of the extra "Go back"s

Find and delete the first 2 times it appears (first time is after $row_count is defined, second is in the first echo in a group of 5 after an elseif. The one inside the elseif can be deleted as well):
echo '<div><div class="linkst"><div class="inbox"><div><a href="javascript:history.go(-1)" />Go back</a></div></div></div>';

7,454

(7 replies, posted in PunBB 1.2 troubleshooting)

Check the admin options page and make sure your base url is set correctly, like the message says?

Bah, it looks ugly tongue
Find out what was used for the image scrolling and see if you can do something similar for this perhaps?

There's a check missing when you edit groups: if the group you're editing exists! tongue
It's just missing a

if (!$db->num_rows($result))
    message($lang_common['Bad request']);

Mmm, I just found something funny tongue
When running a query that returns a lot of columns (ie: select * from #__users) the columns go far beyond the background given by PunBB tongue

7,458

(7 replies, posted in PunBB 1.2 troubleshooting)

Mmm, I think you accidentally deleted the confirm_referrer function wink
Download a fresh copy of 1.2.1, take a look at functions.php, put in confirm_referrer from there, and see if that helps?
btw: which mod?

7,459

(7 replies, posted in PunBB 1.2 troubleshooting)

Erm, have you edited include/functions.php?

7,460

(11 replies, posted in PunBB 1.2 troubleshooting)

John08 wrote:
Smartys wrote:

I tried it on my local forum: only the first topic loads wink

So it is the while loop? I don't understand richard didn't put the post subject in with the post itself in the database.

You can do that: I believe the way PunBB keeps the data current is in functions.php: add a column in the database and change it in the right function and it will be kept for you wink

7,461

(11 replies, posted in PunBB 1.2 troubleshooting)

I tried it on my local forum: only the first topic loads wink

7,462

(11 replies, posted in PunBB 1.2 troubleshooting)

Well, I believe it will look oddly without the span (I'm guessing here tongue) but OK
As for the code, I would assume the while loop is the problem: see if you can integrate the query before or during the really long one?

7,463

(11 replies, posted in PunBB 1.2 troubleshooting)

No, the point is the word by won't appear if it's not there tongue

Oww, my mistake it is tongue
*smacks himself, thinking of 1.1.5*

Missing <span class="byuser> as well

7,464

(11 replies, posted in PunBB 1.2 troubleshooting)

Well, for one thing, I don't think by is in lang_common tongue

7,465

(5 replies, posted in PunBB 1.2 bug reports)

erm, md5 wouldn't work: that would only make the cookie name into a hash tongue
Random names would work. However, that would make the name meaningless: changing $cookie_name in config.php to a different name for each board makes a lot more sense wink

7,466

(76 replies, posted in News)

LMAO tongue

7,467

(24 replies, posted in PunBB 1.2 discussion)

Paul wrote:
Smartys wrote:

Mmm, I came and did a double take tongue
How do you change the "no new posts" indicator back to how it was in 1.2? I like it better there then here, tbh tongue

If you saw them as black, you need to clear your cache and refresh.

Good call Paul: I was scared for a sec tongue
*tweaks his cache settings*

7,468

(24 replies, posted in PunBB 1.2 discussion)

Mmm, I came and did a double take tongue
How do you change the "no new posts" indicator back to how it was in 1.2? I like it better there then here, tbh tongue

7,469

(11 replies, posted in PunBB 1.2 troubleshooting)

LMAO
Guest should be 1 tongue

It redirects fine tongue

Herbie: I believe Rickard said something about a situation like this: let me find it...

Edit: http://punbb.org/forums/viewtopic.php?id=2788
Might want to talk to him about it smile

Erm, 1.2 has something similar to this in it tongue

7,473

(39 replies, posted in PunBB 1.2 troubleshooting)

That looks like you've run the upgrade script and now you're running it again tongue

Perfect smile

I haven't made it to an official mod, all it is is manually changing a line on a couple pages so the group_id for another group is also considered a mod.
It could be made by someone else much better and more flexible (ie: you could add it to the groups table if you wanted)