I was actually planning on having that as an extension smile

Yeah, I'm working on it wink

1,128

(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 wink

arcade_play.php and arcade.php look like they're full of SQL injects. I haven't looked for anything else.

Ugh. That code is insecure to the extreme (as is the other version). hmm
Anyways, in arcade.php, find

if (!$pun_user['is_guest'])

and replace it with

if (1==1)

1,131

(3 replies, posted in PunBB 1.3 troubleshooting)

Aha. I'll have to see what the other devs think. smile

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

(3 replies, posted in PunBB 1.3 troubleshooting)

I'm confused, what do you mean?

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.

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.

Fixed

Put the download code (the code for outputting the download) before you output any HTML.

1,138

(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 smile

1,139

(18 replies, posted in PunBB 1.3 troubleshooting)

co_common? wink

1,140

(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.

Moved to Modifications
Embedding YouTube videos isn't a PunBB feature in the first place tongue

1,142

(4 replies, posted in PunBB 1.3 troubleshooting)

Yes, an extension should be able to do that.

1,143

(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 tongue

1,144

(7 replies, posted in General discussion)

There is no imoved class in PunBB

1,145

(3 replies, posted in PunBB 1.3 troubleshooting)

OK, so like I said, that would be an extension wink

1,146

(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 smile
If you're talking about notes on users, that already exists, just like it does in 1.2.

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 wink
1.2 has a modification like what you're requesting though. You can find it over at PunRes.

1,148

(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 tongue

1,149

(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

(38 replies, posted in PunBB 1.3 troubleshooting)

Would just using rawurlencode work?