Gossamer Forum
Home : Products : Links 2.0 : Customization :

Re: Incoming hits/topsites mod problem

Quote Reply
Re: Incoming hits/topsites mod problem In reply to
Thanks Eliot Lee,

i have check and have found two errors. i dont know, where i have download the mod, but when it the original was, then please check this:


add to:
# Display our cutoffs.
print "\tWhat's New Cutoff: $db_new_cutoff days\n";
print "\tPopular Cutoff: $cutoff hits\n";
this:
print "\tPopular Cutoff: $cutoff inhits\n";

BUT IT MUST BE:
print "\tinPopular Cutoff: $incutoff inhits\n";


AND THE SECOND ERROR:
below:
# Add the link to the list of cool links if it is popular.
push (@{$cool_links{$category}}, @values) if ($values[$db_ispop] eq "Yes");
add:
# Add the link to the list of incoming cool links if it is popular.
push (@{$cool_links{$inhits}}, @values) if ($values[$db_isinpop] eq "Yes");

BUT IT MUST BE:
# Add the link to the list of incoming cool links if it is popular.
push (@{$incool_links{$inhits}}, @values) if ($values[$db_isinpop] eq "Yes");

greetings
nico

Subject Author Views Date
Thread Incoming hits/topsites mod problem nicolaus 962 Nov 13, 2000, 4:06 PM
Thread Re: Incoming hits/topsites mod problem
Stealth 952 Nov 13, 2000, 7:03 PM
Thread Re: Incoming hits/topsites mod problem
nicolaus 935 Nov 14, 2000, 3:49 PM
Thread Re: Incoming hits/topsites mod problem
Stealth 931 Nov 14, 2000, 5:44 PM
Post Re: Incoming hits/topsites mod problem
nicolaus 929 Nov 14, 2000, 6:00 PM