Don't tell me you know someone who hasn't discovered the use of the Home key yet...
226 2008-02-03 00:43
Re: What i want to see in upcoming versions! (20 replies, posted in Feature requests)
227 2008-02-03 00:33
Re: Look, please! (4 replies, posted in PunBB 1.2 bug reports)
ROFL. Are you serious?
That's for 1.2.4.
228 2008-02-02 10:58
Re: Obscure bug? (5 replies, posted in PunBB 1.3 troubleshooting)
Without knowing what screws up, can't really say
229 2008-02-01 22:26
Re: iPhone problems (5 replies, posted in PunBB 1.3 troubleshooting)
Looks like an iPhone Safari bug to me.
230 2008-02-01 21:40
Re: iPhone problems (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 2008-02-01 13:50
Re: Board Description - HTML (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
Then just having htmlspecialchars() in place would be best indeed, with an extension to enable HTML.
232 2008-02-01 12:52
Re: *help* How to change collation?? (5 replies, posted in PunBB 1.2 troubleshooting)
Yes, put a ; after each one and run them in phpMyAdmin or the MySQL CLI tool.
233 2008-02-01 12:47
Re: Board Description - HTML (54 replies, posted in PunBB 1.3 troubleshooting)
You could cache it.
234 2008-01-31 23:42
Re: Supported IM Screen Name(s) (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 2008-01-31 23:33
Re: Feedback on 1.3 (29 replies, posted in PunBB 1.3 troubleshooting)
I don't see any div/span overuse.
236 2008-01-31 22:09
Re: HELP What is the Prob (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.
237 2008-01-31 22:07
Re: Extension Development Mini Primer (12 replies, posted in PunBB 1.3 troubleshooting)
You could probably run PunXS in Mono. I'll be happy to try it out
238 2008-01-31 22:00
Re: Extension Development Mini Primer (12 replies, posted in PunBB 1.3 troubleshooting)
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.
239 2008-01-31 21:30
Re: What i want to see in upcoming versions! (20 replies, posted in Feature requests)
Easy enough. It's implemented in the function: http://be2.php.net/number_format
240 2008-01-31 21:14
Re: What i want to see in upcoming versions! (20 replies, posted in Feature requests)
If your hand is on the mouse, why not just go to the scrollbar? Or even better, get one with a scrollwheel.
241 2008-01-31 20:03
Re: Hook requests (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 2008-01-31 19:46
Re: Hook requests (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.
244 2008-01-31 19:02
Re: Feedback on 1.3 (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 2008-01-31 18:59
Re: Board Description - HTML (54 replies, posted in PunBB 1.3 troubleshooting)
Or just allow the use of BBCode in there, problem solved by the mighty parser.
246 2008-01-31 18:57
Re: Feedback on 1.3 (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.
247 2008-01-31 16:45
Re: Add warning section in admin panel (5 replies, posted in PunBB 1.3 troubleshooting)
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.
248 2008-01-31 16:27
Topic: Add warning section in admin panel (5 replies, posted in PunBB 1.3 troubleshooting)
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 2008-01-30 23:44
Re: Fancy URL's (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 2008-01-30 23:42
Re: Hook requests (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 But still, put some hooks in there.