Looks fine to me...
7,201 2005-04-27 18:30
Re: Have Problem with display some characters (7 replies, posted in PunBB 1.2 troubleshooting)
7,202 2005-04-26 18:24
Re: wBB v1.x/v2.x converter (7 replies, posted in PunBB 1.2 discussion)
I would also ask Chacmool about it, if you give him a dump of the database he should be able to add the functionality to the covertor
7,203 2005-04-26 18:21
Re: Guest are Members ??? (6 replies, posted in PunBB 1.2 troubleshooting)
Well, that wouldn't be a fresh install, that would be a conversion using an older version of the convertor (it should be fixed now)
7,204 2005-04-22 18:00
Re: silly modifications (8 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Erm, I think that has an SQL inject in it
Edit: I'm talking about the exclusion
7,205 2005-04-22 01:32
Re: Easy Poll - 1.1.3 (224 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Notice the extra < at the beginning of the <div> tag? Delete it
7,207 2005-04-19 10:24
Re: Edit time limit (25 replies, posted in Feature requests)
That's a group option in 1.2 I think
7,208 2005-04-17 22:30
Re: Opening links in another windows (9 replies, posted in Feature requests)
Mmm, I do remember something like that being a problem, let me search
http://punbb.org/forums/viewtopic.php?id=6355
Actually it is really both reasons. The target attribute is not XHTML compliant and the reason it is not compliant is that browser behaviour is not something that is the business of markup or css; thats what javascript is for. There is another reason and that is there are accessability issues with opening links in new windows. I think you will find that during the next couple of years opening links in new windows will become something of a rarity.
7,209 2005-04-17 21:57
Re: Opening links in another windows (9 replies, posted in Feature requests)
Which, I believe, isn't valid markup
7,210 2005-04-17 01:25
Re: The distribution of PunBB (2 replies, posted in PunBB 1.2 discussion)
Already done
http://www.mypunbb.com/
And I must say, it pwns
7,211 2005-04-17 01:24
Re: deleted user.. caused chaos! (2 replies, posted in PunBB 1.2 bug reports)
IMPORTANT: Two rather annoying bugs have surfaced since the release of 1.2.5. See this post for instructions on how to fix them.
7,212 2005-04-16 17:17
Re: Making multigroup a native feature (5 replies, posted in Feature requests)
Yeah, I know
And to say again something I think Paul brought up: you don't have to make the system overly complex in terms of if groups have conflicting permissions. All you have to do is check if one group you're in has permission to do what you want to do, and if it does, allow the action. No need to make it more complicated then that.
7,213 2005-04-16 15:27
Re: How do I install the language pack? (7 replies, posted in PunBB 1.2 troubleshooting)
And there's a mod for it
7,214 2005-04-16 10:53
Re: Annoying bug in 1.2.5 (viewtopic.php), posts of unregistered users... (2 replies, posted in PunBB 1.2 bug reports)
IMPORTANT: Two rather annoying bugs have surfaced since the release of 1.2.5. See this post for instructions on how to fix them.
7,215 2005-04-15 21:29
Re: styles on frontpage (18 replies, posted in PunBB 1.2 troubleshooting)
Rickard said you could skip the style check. And I assume on the page when you call that file, you also call common.php elsewhere
7,216 2005-04-15 15:45
Re: paginate function (4 replies, posted in PunBB 1.2 bug reports)
OK: I thought it allowed you to show all the pages in viewforum.php for that specifc forum on the bottom
7,217 2005-04-15 10:26
Re: Making multigroup a native feature (5 replies, posted in Feature requests)
Yeah
That and the ability to give moderator on a per group basis
7,218 2005-04-15 10:24
Re: paginate function (4 replies, posted in PunBB 1.2 bug reports)
In the paginate function, $cur_page can never be -1
7,219 2005-04-14 18:28
Re: Will there be any major updates after 1.2.5? (15 replies, posted in PunBB 1.2 discussion)
There are a few bugs that have, I think he put it, "piled up" since 1.2.5 was released (in addition to the 2 changes that you have to make)
So there should be another release at some point: as to when, it depends on if more things (which are more critical) show up.
7,220 2005-04-14 18:24
Re: Error when searching (3 replies, posted in PunBB 1.2 troubleshooting)
Well, if this is PunBB 1.2, I think EFAM wasn't made for that
In any case, PunBB's 1.2 group system should take care of it
7,221 2005-04-14 18:23
Re: Editing & Delete of certain posts fails -> Query Problem (4 replies, posted in PunBB 1.2 troubleshooting)
My Google search tells me that's "Lost connection to MySQL server during query."
As for what to do to fix it... I dunno
7,222 2005-04-13 23:37
Re: PunBB 1.2.5 (67 replies, posted in News)
It exists there only (and anywhere people download it)
7,223 2005-04-12 09:50
Re: About ranks, admins and moderators (5 replies, posted in PunBB 1.2 troubleshooting)
ah. I thought you wanted both
7,224 2005-04-12 01:23
Topic: paginate function (4 replies, posted in PunBB 1.2 bug reports)
I was looking around the code, and I found this in the paginate function
// If $cur_page == -1, we link to all pages (used in viewforum.php)
if ($cur_page == -1)
{
$cur_page = 1;
$link_to_all = true;
}
Curious, I tried it. It didn't work. I checked the code in viewforum.php and found the problem:
$p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : $_GET['p'];
$start_from = $pun_user['disp_topics'] * ($p - 1);
Basically, if you ever set p to lower than 1, it's set to 1 before paginate is called. However, fixing it isn't so easy, since allowing -1 causes a negative LIMIT, which spits out an SQL error
7,225 2005-04-11 19:47
Re: About ranks, admins and moderators (5 replies, posted in PunBB 1.2 troubleshooting)
Not without modding the code, but I don't know the extent to which you'd have to change the code