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 210-216 $(document).ready(function() { Link Here
210
	
210
	
211
[% IF ( add_form ) %]
211
[% IF ( add_form ) %]
212
<h1>[% IF ( modify ) %]Modify notice[% ELSE %]Add notice[% END %]</h1>
212
<h1>[% IF ( modify ) %]Modify notice[% ELSE %]Add notice[% END %]</h1>
213
          <form name="Aform" method="post" enctype="multipart/form-data">
213
        <form name="Aform" method="post" enctype="multipart/form-data">
214
		<input type="hidden" name="op" id="op" value="add_validate" />
214
		<input type="hidden" name="op" id="op" value="add_validate" />
215
		<input type="hidden" name="checked" value="0" />
215
		<input type="hidden" name="checked" value="0" />
216
		[% IF ( modify ) %]
216
		[% IF ( modify ) %]
Lines 327-338 $(document).ready(function() { Link Here
327
        </ol>
327
        </ol>
328
328
329
        [% 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 %]
329
        [% 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 %]
330
		</fieldset>
330
        </fieldset>
331
          <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>
331
        <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>
332
      <input type="hidden" name="searchfield" value="[% searchfield %]" />
332
      <input type="hidden" name="searchfield" value="[% searchfield %]" />
333
		</form>
333
    </form>
334
[% END %]
334
[% END %]
335
	
335
336
[% IF ( add_validate ) %]
336
[% IF ( add_validate ) %]
337
	Data recorded
337
	Data recorded
338
	<form action="[% action %]" method="post">
338
	<form action="[% action %]" method="post">
339
- 

Return to bug 9016