@@ -, +, @@ --- opac/opac-main.pl | 6 ------ opac/opac-user.pl | 1 - 2 files changed, 0 insertions(+), 7 deletions(-) --- a/opac/opac-main.pl +++ a/opac/opac-main.pl @@ -21,7 +21,6 @@ use warnings; use CGI; use C4::Auth; # get_template_and_user use C4::Output; -use C4::Members; # GetMember use C4::NewsChannels; # get_opac_news use C4::Languages qw(getTranslatedLanguages accept_language); @@ -44,11 +43,6 @@ $template->param( ); -my $borrower = GetMember( borrowernumber=>$borrowernumber ); -$template->param( - textmessaging => $borrower->{textmessaging}, -) if (ref($borrower) eq "HASH"); - # display news # use cookie setting for language, bug default to syspref if it's not set my ($theme, $news_lang) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-main.tt','opac',$input); --- a/opac/opac-user.pl +++ a/opac/opac-user.pl @@ -362,7 +362,6 @@ if ( $borr->{'opacnote'} ) { $template->param( bor_messages_loop => GetMessages( $borrowernumber, 'B', 'NONE' ), waiting_count => $wcount, - textmessaging => $borr->{textmessaging}, patronupdate => $patronupdate, OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"), userview => 1, --