Lines 79-86
$template->param(
Link Here
|
79 |
TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification") ); |
79 |
TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification") ); |
80 |
|
80 |
|
81 |
if ( C4::Context->preference("SMSSendDriver") eq 'Email' ) { |
81 |
if ( C4::Context->preference("SMSSendDriver") eq 'Email' ) { |
82 |
my $providers = Koha::SMS::Providers->search; |
82 |
my @providers = Koha::SMS::Providers->search( {}, { order_by => 'name' } )->as_list; |
83 |
$template->param( sms_providers => $providers, sms_provider_id => $patron->sms_provider_id ); |
83 |
$template->param( |
|
|
84 |
sms_providers => \@providers, |
85 |
sms_provider_id => $patron->sms_provider_id ); |
84 |
} |
86 |
} |
85 |
|
87 |
|
86 |
my $new_session_id = $query->cookie('CGISESSID'); |
88 |
my $new_session_id = $query->cookie('CGISESSID'); |
87 |
- |
|
|