I was actually planning on having that as an extension
1,126 2008-02-03 22:00
Re: Incorrect debug mode instructions (3 replies, posted in PunBB 1.3 troubleshooting)
1,127 2008-02-03 21:51
Re: Add warning section in admin panel (5 replies, posted in PunBB 1.3 troubleshooting)
Yeah, I'm working on it
1,128 2008-02-03 21:31
Re: Text overflow (6 replies, posted in PunBB 1.3 troubleshooting)
d3visi0n: We don't do XML stylesheets (which I think are what you would use to control the display of the RSS feed), so however it looks is up to your browser or feed reader.
Lucas Malor: I'll leave this up to Paul
1,129 2008-02-03 21:22
Re: Making arcade accessible for guests (10 replies, posted in PunBB 1.2 troubleshooting)
arcade_play.php and arcade.php look like they're full of SQL injects. I haven't looked for anything else.
1,130 2008-02-03 21:04
Re: Making arcade accessible for guests (10 replies, posted in PunBB 1.2 troubleshooting)
Ugh. That code is insecure to the extreme (as is the other version).
Anyways, in arcade.php, find
if (!$pun_user['is_guest'])
and replace it with
if (1==1)
1,131 2008-02-03 20:08
Re: Search > Sort results by Forum (3 replies, posted in PunBB 1.3 troubleshooting)
Aha. I'll have to see what the other devs think.
1,132 2008-02-03 20:01
Re: Making arcade accessible for guests (10 replies, posted in PunBB 1.2 troubleshooting)
Yes. Which means $pun_config['pam_guest_list'] is set to 0. The code is already in place to let you configure your arcade to display to guests (and to let them play if you want, as a matter of fact). You just have it turned off.
1,133 2008-02-03 19:59
Re: Search > Sort results by Forum (3 replies, posted in PunBB 1.3 troubleshooting)
I'm confused, what do you mean?
1,134 2008-02-03 19:50
Re: Making arcade accessible for guests (10 replies, posted in PunBB 1.2 troubleshooting)
Look at the code. It displays that message if the user is a guest AND the option to let them see the list is on. So, there is an option already.
1,135 2008-02-03 19:29
Re: Making arcade accessible for guests (10 replies, posted in PunBB 1.2 troubleshooting)
if ($pun_user['is_guest'] && $pun_config['pam_guest_list'] == 0)
message($lang_common['No permission']);
It looks to me like the code is already in place.
1,136 2008-02-03 19:27
Re: Incorrect debug mode instructions (3 replies, posted in PunBB 1.3 troubleshooting)
Fixed
1,137 2008-02-03 17:08
Re: File upload/download problems - header being inserted into file (2 replies, posted in Programming)
Put the download code (the code for outputting the download) before you output any HTML.
1,138 2008-02-03 15:21
Re: a few problems (8 replies, posted in PunBB 1.3 troubleshooting)
1. One was already fixed in SVN and I'm fixing the other (and adding 2 was not the fix, the hooks were incorrectly named)
2. Just for subscribing, since if you can't subscribe to a topic that doesn't exist you can't unsubscribe from a topic that doesn't exist. But working on a fix as we speak.
3. Makes sense, those are some of the most complex queries and they don't play nicely with query builder. If you have a suggestion for dealing with them, cool. If you just want a hook, post in the hook requests sticky, I don't see a reason why we can't have one.
4. Can you give me an example of when you would want to add a new show as value?
5. I'm fixing in SVN
6. Already fixed in SVN
Edit: and done
1,139 2008-02-03 15:11
Re: new pages for extensions (18 replies, posted in PunBB 1.3 troubleshooting)
co_common?
1,140 2008-02-03 00:35
Re: Look, please! (4 replies, posted in PunBB 1.2 bug reports)
I edited out the contents of the post, since I think it was silly to link to exploit code even for such an old version.
Anyways, closed, nothing to see here folks, move along.
1,141 2008-02-02 23:10
Re: Smaller embedded clip when quoting a post containing a Youtube tag? (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to Modifications
Embedding YouTube videos isn't a PunBB feature in the first place
1,142 2008-02-02 22:56
Re: user profile (4 replies, posted in PunBB 1.3 troubleshooting)
Yes, an extension should be able to do that.
1,143 2008-02-02 22:17
Re: where is imoved class (7 replies, posted in General discussion)
Yes, you could create it by editing the PHP and adding the CSS for it, which is what the original poster did
1,144 2008-02-02 21:46
Re: where is imoved class (7 replies, posted in General discussion)
There is no imoved class in PunBB
1,145 2008-02-02 21:44
Re: admin notes for 1.3 (3 replies, posted in PunBB 1.3 troubleshooting)
OK, so like I said, that would be an extension
1,146 2008-02-02 20:55
Re: admin notes for 1.3 (3 replies, posted in PunBB 1.3 troubleshooting)
Adding admin notes to what exactly?
If you're talking about just having a giant textarea for admins to paste in, that would be better as an extension
If you're talking about notes on users, that already exists, just like it does in 1.2.
1,147 2008-02-02 20:25
Re: someone needs to create this mod for 1.3. (5 replies, posted in PunBB 1.3 troubleshooting)
1.3 is currently in beta, I don't think anyone needs to create that extension at this point, since 1.3 should not be used in a production environment
1.2 has a modification like what you're requesting though. You can find it over at PunRes.
1,148 2008-02-02 18:51
Re: Hook requests (151 replies, posted in PunBB 1.3 extensions)
gautam.madeshia: We tried to place certain hooks specifically to make that easy. Could you look through the code and tell me where you think more hooks are needed?
Oh, and I disagree that integration is painful, although I certainly think 1.3 improves it
1,149 2008-02-02 16:49
Re: Obscure bug? (5 replies, posted in PunBB 1.3 troubleshooting)
If you mean viewforum.php (viewtopic.php gives me no issues, but I'm not using the latest SVN atm: even so, I don't think there's a problem there), the issue is that you're overwriting $result.
1,150 2008-02-02 15:35
Re: Url rewriting ° & ¤ issue (38 replies, posted in PunBB 1.3 troubleshooting)
Would just using rawurlencode work?