View | Details | Raw Unified | Return to bug 9016
Collapse All | Expand All

(-)a/C4/Letters.pm (-6 / +6 lines)
Lines 37-49 use Carp; Link Here
37
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
37
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
38
38
39
BEGIN {
39
BEGIN {
40
	require Exporter;
40
    require Exporter;
41
	# set the version for version checking
41
    # set the version for version checking
42
    $VERSION = 3.07.00.049;
42
    $VERSION = 3.07.00.049;
43
	@ISA = qw(Exporter);
43
    @ISA = qw(Exporter);
44
	@EXPORT = qw(
44
    @EXPORT = qw(
45
       &GetLetters &GetPreparedLetter &GetWrappedLetter &addalert &getalert &delalert &findrelatedto &SendAlerts &GetPrintMessages &GetMessageTransportTypes
45
        &GetLetters &GetPreparedLetter &GetWrappedLetter &addalert &getalert &delalert &findrelatedto &SendAlerts &GetPrintMessages &GetMessageTransportTypes
46
	);
46
    );
47
}
47
}
48
48
49
=head1 NAME
49
=head1 NAME
(-)a/C4/Overdues.pm (+1 lines)
Lines 913-918 sub RemoveNotifyLine { Link Here
913
    return a arrayref with all message_transport_type for given branchcode, categorycode and letternumber(1,2 or 3)
913
    return a arrayref with all message_transport_type for given branchcode, categorycode and letternumber(1,2 or 3)
914
914
915
=cut
915
=cut
916
916
sub GetOverdueMessageTransportTypes {
917
sub GetOverdueMessageTransportTypes {
917
    my ( $branchcode, $categorycode, $letternumber ) = @_;
918
    my ( $branchcode, $categorycode, $letternumber ) = @_;
918
    return unless $categorycode and $letternumber;
919
    return unless $categorycode and $letternumber;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt (-6 / +5 lines)
Lines 227-233 $(document).ready(function() { Link Here
227
	
227
	
228
[% IF ( add_form ) %]
228
[% IF ( add_form ) %]
229
<h1>[% IF ( modify ) %]Modify notice[% ELSE %]Add notice[% END %]</h1>
229
<h1>[% IF ( modify ) %]Modify notice[% ELSE %]Add notice[% END %]</h1>
230
          <form name="Aform" method="post" enctype="multipart/form-data">
230
        <form name="Aform" method="post" enctype="multipart/form-data">
231
		<input type="hidden" name="op" id="op" value="add_validate" />
231
		<input type="hidden" name="op" id="op" value="add_validate" />
232
		<input type="hidden" name="checked" value="0" />
232
		<input type="hidden" name="checked" value="0" />
233
		[% IF ( modify ) %]
233
		[% IF ( modify ) %]
Lines 344-355 $(document).ready(function() { Link Here
344
        </ol>
344
        </ol>
345
345
346
        [% IF code.search('DGST') %] <span class="overdue">Warning, this is a template for a Digest, as such, any references to branch data ( e.g. branches.branchname ) will refer to the borrower's home branch.</span> [% END %]
346
        [% IF code.search('DGST') %] <span class="overdue">Warning, this is a template for a Digest, as such, any references to branch data ( e.g. branches.branchname ) will refer to the borrower's home branch.</span> [% END %]
347
		</fieldset>
347
        </fieldset>
348
          <fieldset class="action"><input type="submit" id="submit" value="Submit" class="button" /> <a class="cancel" href="/cgi-bin/koha/tools/letter.pl">Cancel</a></fieldset>
348
        <fieldset class="action"><input type="submit" id="submit" value="Submit" class="button" /> <a class="cancel" href="/cgi-bin/koha/tools/letter.pl">Cancel</a></fieldset>
349
      <input type="hidden" name="searchfield" value="[% searchfield %]" />
349
      <input type="hidden" name="searchfield" value="[% searchfield %]" />
350
		</form>
350
    </form>
351
[% END %]
351
[% END %]
352
	
352
353
[% IF ( add_validate ) %]
353
[% IF ( add_validate ) %]
354
	Data recorded
354
	Data recorded
355
	<form action="[% action %]" method="post">
355
	<form action="[% action %]" method="post">
356
- 

Return to bug 9016