From 4017d2449de2474c725aa952f2bc644e7559a9ca Mon Sep 17 00:00:00 2001 From: Joe Atzberger Date: Fri, 19 Jun 2009 19:32:43 -0500 Subject: [PATCH] Remove unused variable and add FIXME. Signed-off-by: Galen Charlton --- C4/Context.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/C4/Context.pm b/C4/Context.pm index 0d07ebfd8f..4dab9a98c5 100644 --- a/C4/Context.pm +++ b/C4/Context.pm @@ -866,7 +866,6 @@ sub _new_stopwords my $sth = $dbh->prepare("select word from stopwords"); $sth->execute; while (my $stopword = $sth->fetchrow_array) { - my $retval = {}; $stopwordlist->{$stopword} = uc($stopword); } $stopwordlist->{A} = "A" unless $stopwordlist; @@ -957,7 +956,7 @@ sub get_shelves_userenv () { =item _new_userenv - C4::Context->_new_userenv($session); + C4::Context->_new_userenv($session); # FIXME: This calling style is wrong for what looks like an _internal function Builds a hash for user environment variables. @@ -971,7 +970,7 @@ _new_userenv is called in Auth.pm #' sub _new_userenv { - shift; + shift; # Useless except it compensates for bad calling style my ($sessionID)= @_; $context->{"activeuser"}=$sessionID; } -- 2.20.1