Copyright, especially as intrusive as that, should be in the code, not cluttering your view.
2 2008-06-20 08:41
Re: Please Someone explain (3 replies, posted in PunBB 1.2 discussion)
3 2008-06-17 19:19
Re: after logging in, your redirected to extern.php (4 replies, posted in PunBB 1.2 bug reports)
Due to
<link rel="alternate" type="application/atom+xml" href="http://punbb.informer.com/forums/extern.php?action=feed&tid=19354&type=atom" title="Atom" />
in the header, the browser requests that page and sets prev_url.
5 2008-05-12 19:44
Re: Development team annoucement (59 replies, posted in General discussion)
You'll indeed have to recreate most of the code, but the database will remain intact.
6 2008-05-12 18:36
Re: Development team annoucement (59 replies, posted in General discussion)
You can just use the hdiff to upgrade, all mods should keep working
7 2008-05-11 15:30
Re: Development team annoucement (59 replies, posted in General discussion)
How would they buy FluxBB if the developers don't want to sell it?
8 2008-05-10 11:53
Re: PunBB 1.2.17 (69 replies, posted in News)
URI = Unified Resource Identifier
URL = Unified Resource Link
(well, not sure about the Unified.)
9 2008-05-09 18:45
Re: Development team annoucement (59 replies, posted in General discussion)
Just to note I'm fully supporting this fork and will thus not be further developing any of my extensions for PunBB. They however have been ported to FluxBB (along with a few new ones), and will only be supported and continued there.
10 2008-05-08 18:32
Re: Will "per-style templates" become available? (13 replies, posted in PunBB 1.3 troubleshooting)
You can write extensions along with your style if you *really* need to change things.
11 2008-05-05 21:07
Re: Language editing (8 replies, posted in PunBB 1.2 troubleshooting)
1.3 allows to do that.
12 2008-05-05 21:04
Re: qjump doesn't use clean URLs (14 replies, posted in PunBB 1.3 troubleshooting)
Nah, that isn't too hard.
13 2008-05-05 14:01
Re: Language editing (8 replies, posted in PunBB 1.2 troubleshooting)
It'll break compatibility with alot of mods.
14 2008-05-04 17:38
Re: Hacked By DaRkNeSs (2 replies, posted in PunBB 1.2 troubleshooting)
Well, it obviously isn't a PunBB issue judging by those search results
The best idea is to change your passwords, and make sure they aren't displayed publicly anywhere.
15 2008-05-03 16:26
Re: how to replace the menu header (4 replies, posted in PunBB 1.3 troubleshooting)
Yes.
16 2008-05-03 16:19
Re: how to replace the menu header (4 replies, posted in PunBB 1.3 troubleshooting)
Oops, didn't see this was in the 1.3 forum. You'll have to replace <!-- pun_navlinks -->.
17 2008-05-03 16:15
Re: how to replace the menu header (4 replies, posted in PunBB 1.3 troubleshooting)
Edit include/template/main.tpl and replace <pun_navlinks> with the embed code for your menu.
18 2008-05-03 12:36
Re: Moving to a new domain (62 replies, posted in News)
You do have a good point there. Another shitload of spam ontop of the shitload already in this mailbox wouldn't be very fun to have.
19 2008-04-30 21:55
Re: One user in a few g roups ... - Easiest way? (5 replies, posted in PunBB 1.2 troubleshooting)
No. But you can set each group to have the same priviledges (except for moderator priviledges).
20 2008-04-30 20:39
Re: One user in a few g roups ... - Easiest way? (5 replies, posted in PunBB 1.2 troubleshooting)
Leader Group 1, Member Group 1 etc would be easiest.
21 2008-04-30 16:40
Re: Problems after moving forum (5 replies, posted in PunBB 1.2 troubleshooting)
Try deleting PunBB's cache.
22 2008-04-30 06:51
Re: Update extension? (6 replies, posted in PunBB 1.3 extensions)
In the install code, you can check if the tables already exist and do a database upgrade if necessary. Then just boost the version number and you can upgrade it from the extension installation page.
23 2008-04-27 21:47
Re: qjump doesn't use clean URLs (14 replies, posted in PunBB 1.3 troubleshooting)
You could have a hidden form element specifying which scheme to use, and use JS to build the correct URL for it.
24 2008-04-24 19:25
Re: Form e-mail - Error: Unable to fetch topic info (7 replies, posted in PunBB 1.2 troubleshooting)
Make sure $topic_id is set.
25 2008-04-23 20:09
Re: [extension release] Easy Profile Fields v2.0 (35 replies, posted in PunBB 1.3 extensions)
That first bit of code looks like a bug indeed. It should be
return htmlspecialchars(($value == '1') ? $lang_epf['Yes'] : $lang_epf['No']);
The second line works as it should, I don't see why it should be changed. Round() allows for larger numbers, not that it'll ever be needed, but it's there.