Gossamer Forum
Home : Gossamer Threads Inc. : Official Bug Fixes :

[Links SQL 2.1.1] - Whats Cool count wrong

Quote Reply
[Links SQL 2.1.1] - Whats Cool count wrong
Hi,

There is a bug in Links SQL 2.1.1 in that the what's cool flag is not properly reset. To fix, edit admin/Links/Build.pm around line 827 and change:

$cond->add('ID', 'NOT IN', \@ids);

to:

$cond->add('ID', 'IN', \@ids);
$cond->not;

Cheers,

Alex
--
Gossamer Threads Inc.
Quote Reply
Re: [Alex] [Links SQL 2.1.1] - Whats Cool count wrong In reply to
Looks like it worked! Thanks AlexSmile


http://www.iuni.com/...tware/web/index.html
Links Plugins
Quote Reply
Re: [Alex] [Links SQL 2.1.1] - Whats Cool count wrong In reply to
Has it been fixed and uploaded to the download area?