this is the problem: function pun_htmlspecialchars($str)
52 2004-06-25 00:21
Topic: problems with html entities (6 replies, posted in PunBB 1.2 bug reports)
I have < in a database (posts table, message field), but when this gets displayed, it is displayed as <..
53 2004-06-24 22:29
Re: RSS of latest POSTS (not topics) (11 replies, posted in Feature requests)
That answered my question, you opened the links in the same window which is fair enough.
Sure, I believe users today are advanced enought to make their own decision...
btw, if requested, I'll put all files for download on sourceforge.net
54 2004-06-24 22:03
Topic: XHTML 1.0 STRICT valid PunBB (42 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I have modified ALL PunBB 1.1.4 files to use CSS better, and to be fully XHTML 1.0 STRICT valid.
Here's an example:
I have made it to look same as BLOG:CMS homepage:
If you are interested in this mod, let me know, I'll put download file on sourceforge.net.
56 2004-06-24 21:44
Re: RSS of latest POSTS (not topics) (11 replies, posted in Feature requests)
give me about 60 minutes, I'll upload it to the server and convert about 800 phpBB posts to PunBB..
57 2004-06-24 21:39
Re: RSS of latest POSTS (not topics) (11 replies, posted in Feature requests)
ok, I'll do that (backup/restore). I differ from your opinion and consider backup function THE MOST important in ANY system..
58 2004-06-24 21:34
Re: RSS of latest POSTS (not topics) (11 replies, posted in Feature requests)
nevermind, I did it already All pages are XHTML 1.0 STRICT valid.
btw, what about backup / restore? Will this be in 1.2?
59 2004-06-24 19:40
Re: RSS of latest POSTS (not topics) (11 replies, posted in Feature requests)
thanks, Rickard, I did make a search before posting..
btw, I am working on PunBB to create fully valid XHTML 1.0 STRICT code, all pages, including admin ones, would you be interested in this?
60 2004-06-24 18:45
Topic: RSS of latest POSTS (not topics) (11 replies, posted in Feature requests)
Is there a mod allowing to export latest X posts, rather than topics? if not, I'm going to make one..
61 2004-06-24 09:59
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
here you go:
<pre>g</pre>
62 2004-06-24 09:35
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
well, sorry for confusion, when trying to solve the problem I modified slightly the while {} cycle, but the only needed solution is to add $styles=array();
63 2004-06-24 00:34
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
raDo: What version are you running? Try echoing out $styles before the loop. It appears to be initialized already.
I'm running 1.1.4, downloaded few hours ago. Initilazing $styles=array(); did the trick, it's working fine now (in both profile / admin_options.php).
64 2004-06-23 19:36
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
this is the required fix (around line 1145):
$styles=array(); // add this
while (($entry = $d->read()) !== false)
if (strpos($entry,'.css')!== false) $styles[] = substr($entry, 0, strlen($entry)-4);
65 2004-06-23 19:33
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
aha, this was the error:
<b>Fatal error</b>:
[] operator not supported for strings in
<b>C:\www\punbb\profile.php</b> on line <b>1145</b>
66 2004-06-23 19:22
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
well, I did, after a fresh install, ALL pages are ok EXCEPT those 2 mentioned (admin_options and profile). Any hints where should I look? I am fluent in PHP
67 2004-06-23 19:06
Re: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
no, none, I noticed that http://localhost/punbb/profile.php is missing header as well, and drop-down select box for styles is EMPTY
68 2004-06-23 18:51
Topic: admin_options.php missing header (17 replies, posted in PunBB 1.2 bug reports)
Hi, first, I love this system. Also migrating about 1.000 posts from phpBB went fine. PunBB is way faster, and I appreciate this a lot.
Just one minor bug: http://.../admin_options.php is missing header, the HTML is beginning with <table class="punspacer" cellspacing="1" cellpadding="4">. Using latest 1.1.4 release (tar.bz2 package).