Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - live627
31
Off-topic / Re: Wedge | My thoughts
« on February 5th, 2014, 12:36 AM »
Quote from Bunstonious on February 4th, 2014, 11:32 PM
Quote
Never seen that happen...
Could be just me I guess.
Not just yyou.

Nao: On the menu, click the colored area below the text... works in SMF...
32
Importing into Wedge / Re: importer MySQL bug
« on February 4th, 2014, 06:52 AM »
Moved. Even though this was in bug reports, I think it is better suited here and might grab @TE's attention faster.
33
Archived fixes / Re: Just emptied the boards table and got an error
« on February 4th, 2014, 06:46 AM »
Quote from Arantor on June 29th, 2013, 08:31 PM
Ah, yes, I see the problem and it will affect anyone. If there's a situation where you're viewing the board index without any visible categories it'll throw the error. And if there's no visible boards, there's no visible categories.

Code: [Select]
if ($key == -1)
{
$cats = array_keys($categories);
$key = $cats[0];
$after = false;
}

$categories = array_insert($categories, $key, $thiscat, $after);

is the current code... I'm guessing it should be:
Code: [Select]
if ($key == -1)
{
$cats = array_keys($categories);
$key = !empty($cats) ? $cats[0] : 0;
$after = false;
}

$categories = array_insert($categories, $key, $thiscat, $after);
Is this now in the codebase? I'm in the middle of rebuilding my localhost so can't check atm...
34
The Pub / Re: Wedge repo -- installation feedback
« on February 2nd, 2014, 05:10 AM »
Quote from Obake on February 2nd, 2014, 12:49 AM
« Reply #139 12 hours ago »Last edited 20 hours ago
How the hell did THAT happen??
35
Documentation / Disable administration security
« on February 2nd, 2014, 02:15 AM »
This disables the additional password check for the administration section. Not recommended!

Enter this query into phpMyAdmin:

Code: [Select]
INSERT INTO `wedge_settings` (`variable`, `value`) VALUES ('securityDisable', '1');
36
http://wedge.org/profile/live627/?area=showposts;board=134 doesn't work right, so it'd be more complex to find old reports...
37
Fixed in revision d76cbef
39
Off-topic / Re: A short script to remove unused, useless globals in PHP.
« on November 20th, 2013, 11:51 PM »
I'm just going on what Arantor said. I'm also not looking at the code, either.
40
The Pub / Re: Is the admin area in urgent need of an overhaul?
« on November 20th, 2013, 11:47 PM »
Everyone uses prepareDBSettingContext() because their settings go in the database, not in a file. I doubt anyone'll comment because of that...
41
Off-topic / Re: A short script to remove unused, useless globals in PHP.
« on November 20th, 2013, 11:41 PM »
$smcFunc and packman are the two major offenders that I know of.
42
Off-topic / Re: A short script to remove unused, useless globals in PHP.
« on November 20th, 2013, 09:59 PM »
Quote
Heck, I could even run the thing myself on SMF 2.1, and push that...
There will be false positives.
43
Other software / Re : SMF reaction to 'unused, useless globals'
« on November 18th, 2013, 07:14 PM »
Quote from Bloc on November 18th, 2013, 01:55 PM
Its a bit of bashing in that topic yes, sad to say. I think its open for SMF helper group, which I am in..but not sure, maybe I am granted special access or something.
I'm in that group and cannot access that topic.
44
Off-topic / Re: Bitcointalk.org $11k bounty for new forum software
« on November 4th, 2013, 03:32 AM »
- theymos isn't really interested anymore.
- No more than 10% is accepted upfront.
45
Bug reports / Re : Re: Where should I put up the source code?
« on October 25th, 2013, 01:51 AM »
I think it was started on, but was never finished.