X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=opac%2Fopac-suggestions.pl;h=32b5c3d221c01de0187bf2c313bae2b826936651;hb=51a6f0958926fcbdf48e97d386a2463a9c113d73;hp=15eebf914459790806b37634a3f6c0603c4178e7;hpb=9573f444fcd6f56b2c9248d6bc8d52525a62d518;p=koha_fer diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index 15eebf9144..32b5c3d221 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -11,9 +11,9 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. use strict; use warnings; @@ -128,11 +128,15 @@ if ( C4::Context->preference("AllowPurchaseSuggestionBranchChoice") ) { my ( $borr ) = GetMemberDetails( $borrowernumber ); # pass the pickup branch along.... - my $branch = $input->param('branch') || $borr->{'branchcode'} || C4::Context->userenv->{branch} || '' ; + my $userbranch = ''; + if (C4::Context->userenv && C4::Context->userenv->{'branch'}) { + $userbranch = C4::Context->userenv->{'branch'}; + } + my $branch = $input->param('branch') || $borr->{'branchcode'} || $userbranch || '' ; # make branch selection options... - my $CGIbranchloop = GetBranchesLoop($branch); - $template->param( branch_loop => $CGIbranchloop ); + my $branchloop = GetBranchesLoop($branch); + $template->param( branchloop => $branchloop ); } $template->param(