in reply to Hash table checker doesnt work
Update: That was a mistake. I didn't know what I looked at to see this error that isn't there.
The first thing I spotted in your code was:
next unless $token->[1]{href} =~ /\?page=/ || $token->[1]{class} =~ /t +op10_link/;
ornext unless ($token->[1]{href} =~ /\?page=/) || ($token->[1]{class} =~ /top10_link/);
next unless ($token->[1]{href} =~ /\?page=/) or ($token->[1]{class} =~ /top10_link/);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Hash table checker doesnt work
by hodashirzad (Novice) on Apr 10, 2007 at 10:30 UTC |