X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=C4%2FContext.pm;h=4dab9a98c52211587718fcc947ad96fab7f8b709;hb=4017d2449de2474c725aa952f2bc644e7559a9ca;hp=0d07ebfd8f47d1c7bc246396a2770b80568846f6;hpb=899cca556219e4c82c1295fbfbec50abaaece5b9;p=koha.git 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; }