Don't tell me you know someone who hasn't discovered the use of the Home key yet...

227

(4 replies, posted in PunBB 1.2 bug reports)

ROFL. Are you serious?

That's for 1.2.4.

228

(5 replies, posted in PunBB 1.3 troubleshooting)

Without knowing what screws up, can't really say hmm

229

(5 replies, posted in PunBB 1.3 troubleshooting)

Looks like an iPhone Safari bug to me.

230

(5 replies, posted in PunBB 1.3 troubleshooting)

TBH, I prefer a horizontal scrollbar over not being able to read the text at all.

I'd check on my PDA, but I don't have WiFi at home.

231

(54 replies, posted in PunBB 1.3 troubleshooting)

You could perhaps parse it as a signature then? Or do I remember incorrectly and you can put code tags/quotes in there.

But if you think it's overkill, you're probably right smile
Then just having htmlspecialchars() in place would be best indeed, with an extension to enable HTML.

Yes, put a ; after each one and run them in phpMyAdmin or the MySQL CLI tool.

233

(54 replies, posted in PunBB 1.3 troubleshooting)

You could cache it.

234

(13 replies, posted in Feature requests)

Would be better to just get rid of them all. Put it in the sig if you feel the need to share it.

235

(29 replies, posted in PunBB 1.3 troubleshooting)

I don't see any div/span overuse.

236

(2 replies, posted in PunBB 1.2 troubleshooting)

Check your server's error_log and see why the request to the style files are failing.

You could probably run PunXS in Mono. I'll be happy to try it out tongue

You'd have to reinstall them on each change, yes, but it should be easy enough to write a script to delete it from the DB, delete the cache and reinstall it.
PunXS should solve all of that anyway.

Easy enough. It's implemented in the function: http://be2.php.net/number_format

If your hand is on the mouse, why not just go to the scrollbar? Or even better, get one with a scrollwheel.

241

(151 replies, posted in PunBB 1.3 extensions)

Oh.

And it will insert it there, it'll just appear as element #4 because there is not actual #4. Logical, I'd say.

242

(151 replies, posted in PunBB 1.3 extensions)

Arrays in PHP aren't really like in other languages. You can insert values everywhere you want.

Too bad the array_insert() function doesn't exist, but it should be easy enough to implement. Something like this probably:

function array_insert(&$array, $offset, &$insertvals)
{
    array_splice($array, $offset, 0, $insertvals);
}

Another thing I'd like to note is that there seems to be no way to add a section (?action=*) to profile.php. You'd have to add a new page to do so. Not very friendly for simple extensions wanting to have a user setting.
A hook around line 1118 in profile.php would do for that.

243

(3 replies, posted in PunBB 1.3 troubleshooting)

It's an extension.

244

(29 replies, posted in PunBB 1.3 troubleshooting)

No. Read the sentence. Having the title in there is good for people to know what's on the page, and having a little number in there won't throw them off.

245

(54 replies, posted in PunBB 1.3 troubleshooting)

Or just allow the use of BBCode in there, problem solved by the mighty parser.

246

(29 replies, posted in PunBB 1.3 troubleshooting)

Having alot of string lookups for no apparent reason is hugely against PunBB's main idea, which is keeping it simple.
Face it, people copy and paste things. They couldn't give less of a rat's ass if it contains an ID. If they want to know what it's about, look further in the link. Or they'll just load the page and see what it's about.
I see no upside to putting in a feature that's so incredibly useless it would fit nicely in vBulletin.

I was sure I put in a decent title... wth.

And no, removing them by itself isn't necessarily good. When you see something wrong with your install and want to try again, you'd have to reupload. Not very user friendly.

Things like 'db_update.php is still in the forum root', 'you have not yet removed install.php', ...
Might be a good thing to do.

A good place for this would be on the admin index, added to the table there.

249

(50 replies, posted in PunBB 1.3 troubleshooting)

Just create a folder called localized_rewrite_schemes in the extensions folder and put the manifest.xml in there.

250

(151 replies, posted in PunBB 1.3 extensions)

Some hooks in include/email.php would be nice for things like secure SMTP support and modifying email headers.

EDIT: Well, not secure SMTP as that seems to be in tongue But still, put some hooks in there.