|
From: Eric A. <de...@us...> - 2004-03-28 02:26:57
|
Update of /cvsroot/sprawler/sprawler/lib/Sprawler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3262/lib/Sprawler Modified Files: Master.pm Log Message: - One more minor tweak/bug fix Index: Master.pm =================================================================== RCS file: /cvsroot/sprawler/sprawler/lib/Sprawler/Master.pm,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** Master.pm 28 Mar 2004 01:49:40 -0000 1.37 --- Master.pm 28 Mar 2004 02:15:44 -0000 1.38 *************** *** 174,178 **** my $url=${$tmp_db}{URL}; ! my $stateone_clientid=$dbh1->{$url}; if ($stateone_clientid eq $clientid) { # client checking in indexed db- change url from stage 1 to stage 2 --- 174,182 ---- my $url=${$tmp_db}{URL}; ! if ($dbh1->{$url}) { ! my $stateone_clientid=$dbh1->{$url}; ! } else { ! my $stateone_clientid=""; ! } if ($stateone_clientid eq $clientid) { # client checking in indexed db- change url from stage 1 to stage 2 |