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

(-)a/Koha/Borrower/Modification.pm (-1 / +1 lines)
Lines 39-45 Koha::Item - Koha Item object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'BorrowerModification';
43
    return 'BorrowerModification';
44
}
44
}
45
45
(-)a/Koha/Checkout.pm (-1 / +1 lines)
Lines 39-45 Koha::Checkout - Koha Checkout object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'Issue';
43
    return 'Issue';
44
}
44
}
45
45
(-)a/Koha/Checkouts.pm (-1 / +1 lines)
Lines 41-47 Koha::Checkouts - Koha Checkout object set class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Issue';
45
    return 'Issue';
46
}
46
}
47
47
(-)a/Koha/News.pm (-1 / +1 lines)
Lines 41-47 Koha::News - Koha News object set class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'OpacNews';
45
    return 'OpacNews';
46
}
46
}
47
47
(-)a/Koha/NewsItem.pm (-1 / +1 lines)
Lines 41-47 Koha::NewsItem represents a single piece of news from the opac_news table Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'OpacNews';
45
    return 'OpacNews';
46
}
46
}
47
47
(-)a/Koha/Patron/Modifications.pm (-1 / +1 lines)
Lines 312-318 sub GetModifications { Link Here
312
    return $data;
312
    return $data;
313
}
313
}
314
314
315
sub type {
315
sub _type {
316
    return 'BorrowerModification';
316
    return 'BorrowerModification';
317
}
317
}
318
318
(-)a/Koha/Suggestion.pm (-1 / +1 lines)
Lines 39-45 Koha::Suggestion - Koha Suggestion object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'Suggestion';
43
    return 'Suggestion';
44
}
44
}
45
45
(-)a/Koha/Suggestions.pm (-1 / +1 lines)
Lines 41-47 Koha::Suggestions - Koha Suggestion object set class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Suggestion';
45
    return 'Suggestion';
46
}
46
}
47
47
(-)a/tools/letter.pl (-1 / +1 lines)
Lines 259-264 sub add_validate { Link Here
259
    my @content       = $input->multi_param('content');
259
    my @content       = $input->multi_param('content');
260
    for my $mtt ( @mtt ) {
260
    for my $mtt ( @mtt ) {
261
        my $is_html = $input->param("is_html_$mtt");
261
        my $is_html = $input->param("is_html_$mtt");
262
        my $is_tt = $input->param("is_tt_$mtt") ? 1 : 0;
262
        my $title   = shift @title;
263
        my $title   = shift @title;
263
        my $content = shift @content;
264
        my $content = shift @content;
264
        my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt);
265
        my $letter = C4::Letters::getletter( $oldmodule, $code, $branchcode, $mtt);
265
- 

Return to bug 14757