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->as_list; |
83 |
$template->param( sms_providers => $providers, sms_provider_id => $patron->sms_provider_id ); |
83 |
my @sorted_providers = sort { $a->name cmp $b->name } @providers; |
|
|
84 |
$template->param( sms_providers => \@sorted_providers, sms_provider_id => $patron->sms_provider_id ); |
84 |
} |
85 |
} |
85 |
|
86 |
|
86 |
my $new_session_id = $query->cookie('CGISESSID'); |
87 |
my $new_session_id = $query->cookie('CGISESSID'); |
87 |
- |
|
|