@@ -, +, @@ --- C4/Letters.pm | 10 +++------- installer/data/mysql/updatedatabase.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt | 4 ++-- 3 files changed, 6 insertions(+), 10 deletions(-) --- a/C4/Letters.pm +++ a/C4/Letters.pm @@ -849,22 +849,18 @@ ENDSQL my @mtt = GetMessageTransportTypes(); - returns a list of hashes + returns an arrayref of transport types =cut sub GetMessageTransportTypes { my $dbh = C4::Context->dbh(); - my $sth = $dbh->prepare(" + my $mtts = $dbh->selectcol_arrayref(" SELECT message_transport_type FROM message_transport_types ORDER BY message_transport_type "); - $sth->execute; - my @mtts = map{ - $_->[0] - } @{ $sth->fetchall_arrayref() }; - return \@mtts; + return $mtts; } =head2 _add_attachements --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -8065,7 +8065,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { } } - print "Upgrade done (Bug 9016: Adds the association table overduerules_transport_types)\n"; + print "Upgrade done (Bug 9016: Adds multi transport types management for notices)\n"; SetVersion($DBversion); } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt @@ -34,7 +34,7 @@ $(document).ready(function() { || ( title.length > 0 && content.length == 0 ) ) { var mtt = $(this).find('input[name="message_transport_type"]').val(); - var msg = _("You must specify a title and a content for %s"); + var msg = _("Please specify title and content for %s"); msg = msg.replace( "%s", mtt ); alert(msg) event.preventDefault(); @@ -95,7 +95,7 @@ $(document).ready(function() { chaineAj += $(this).val(); } } ); - $(myQuery).insertAtCaret(chaineAj); + $(myQuery).insertAtCaret("<<" + chaineAj + ">>"); } } [% END %] --