Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [Payooo] Problem with Links SQL v. 2.2.0 global

Quote Reply
Re: [Payooo] Problem with Links SQL v. 2.2.0 global In reply to
Try changing

my $nh = $tags->{nh}||10;
my $mh = $tags->{maxhits}||100;

to

my $nh = $tags->{nh};
my $mh = $tags->{maxhits};
$nh =~ /\d+/ || $nh=1;
$mh =~ /\d+/ || $mh = 100;

Not sure why it isn't reading the $tags in though.
Subject Author Views Date
Thread Problem with Links SQL v. 2.2.0 global Payooo 4180 May 9, 2004, 5:42 AM
Thread Re: [Payooo] Problem with Links SQL v. 2.2.0 global
afinlr 4086 May 9, 2004, 7:00 AM
Thread Re: [afinlr] Problem with Links SQL v. 2.2.0 global
Payooo 4073 May 9, 2004, 7:10 AM
Post Re: [Payooo] Problem with Links SQL v. 2.2.0 global
afinlr 4055 May 9, 2004, 7:14 AM
Thread Re: [afinlr] Problem with Links SQL v. 2.2.0 global
Payooo 4072 May 9, 2004, 7:21 AM
Thread Re: [Payooo] Problem with Links SQL v. 2.2.0 global
afinlr 4053 May 9, 2004, 7:26 AM
Post Re: [afinlr] Problem with Links SQL v. 2.2.0 global
Payooo 4048 May 9, 2004, 7:33 AM
Thread Re: [Payooo] Problem with Links SQL v. 2.2.0 global
Jagerman 4023 May 9, 2004, 12:20 PM
Post Re: [Jagerman] Problem with Links SQL v. 2.2.0 global
Payooo 4009 May 10, 2004, 7:15 AM
Post Re: [Jagerman] Problem with Links SQL v. 2.2.0 global
klangan 3955 Jun 22, 2004, 2:19 PM