
Andy
Enthusiast
Karma: -1 / +7

Oct 14, 2005, 1:12 AM
Post #5 of 6
(1368 views)
Shortcut
Send Andy a wink
|
|
Re: [theobeest] checking only a certain part of the directory?
[In reply to]
|
Can't Post
|
|
Hi, Sorry about that Ok, here goes. 1) In check.cgi, find;
my $sth = $table->select(); ..and change to;
my $sth = $table->select( { DoCheck => 1 } ); Also, in /admin/Plugins/Recip_Link.pm, please find the "Check_All" sub, and change;
my $sth = $table->select(); ..to;
my $sth = $table->select( { DoCheck => 1 } ); ...and then in Check_Staggered(), please change;
my $cond = GT::SQL::Condition->new('ID','>',$last_id); my $sth = $table->select( $cond ); ..to;
my $cond = GT::SQL::Condition->new('ID','>',$last_id,'DoCheck','=','1'); my $sth = $table->select( $cond ); That should do it Hope that helps. Cheers Andy Programmer/Designer/LinksSQL Freak http://www.ultranerds.com http://www.imagesql.com
|