From 60368d104997a8054efc8e09a58f1522fdeaa002 Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Fri, 30 May 2008 13:56:17 -0500 Subject: [PATCH] From HDL: I agree that opac-suggestions.tmpl modification is Not required any longer. But still, the modification in opac-suggestions.pl is really necessary. If you donot do that, ppl are presented with ALL suggestions and not their suggestions by default, which is not what My Suggestions suggests. --- opac/opac-suggestions.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index a46679ad8d..e1535f54ef 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -33,7 +33,7 @@ my $publicationyear = $input->param('publicationyear'); my $place = $input->param('place'); my $isbn = $input->param('isbn'); my $status = $input->param('status'); -my $suggestedbyme = $input->param('suggestedbyme'); +my $suggestedbyme = (defined $input->param('suggestedbyme')? $input->param('suggestedbyme'):1); my $op = $input->param('op'); $op = 'else' unless $op; -- 2.39.2