Heh. I'd probably just constantly be trying to get rid of all the bold to catch up, catch up, catch up!! and make it all look uniform again.
Heh. Sometimes I do that already, just to make all the "x new" stuff go away.
Do you have problems, concerns, or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.
Heh. I'd probably just constantly be trying to get rid of all the bold to catch up, catch up, catch up!! and make it all look uniform again.
Heh. Sometimes I do that already, just to make all the "x new" stuff go away.
Array
Edit: Okay, this is freaky. Every post I make is popping up saying "array," which is not what I'm typing. It's nowhere in my windows, so this isn't accidental cut and paste.
Help?
Array
Array
Support is bringing the site up bit by bit, I guess.
Array
eta: I posted the word "test". The board converted it to "Array". I'm seeing if this part holds, when I edit it in.
eta 2
ita, should we just stay out for longer?
Well, I kicked y'all out, so that should have answered that.
Are we OK now?
The Plesk upgrade went south (which was why the site was down entirely), and then when it came back up, there was strangeness.
For the techheads:
foreach($chunks as $chunk) {
$this->id = 0;
$this->content = $chunk;
$this->_save();
}
Broke, because $chunk was suddenly an array. No code changes, just a PHP upgrade to 4.3.10.
So I tweaked it to this:
foreach($chunks as $chunk) {
$this->id = 0;
$this->content = $chunk[0];
$this->_save();
}
But I don't like it because I don't understand it.