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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt (-2 / +2 lines)
Lines 529-542 function searchauthority() { Link Here
529
    var addauthButton = new YAHOO.widget.Button({
529
    var addauthButton = new YAHOO.widget.Button({
530
                                            id: "addauth",
530
                                            id: "addauth",
531
                                            type: "button",
531
                                            type: "button",
532
                                            label: "Save",
532
                                            label: _("Save"),
533
                                            container: "addauthc",
533
                                            container: "addauthc",
534
                                            onclick: {fn: Check }
534
                                            onclick: {fn: Check }
535
                                        });
535
                                        });
536
    var addauthButton2 = new YAHOO.widget.Button({
536
    var addauthButton2 = new YAHOO.widget.Button({
537
                                            id: "addauth2",
537
                                            id: "addauth2",
538
                                            type: "button",
538
                                            type: "button",
539
                                            label: "Save",
539
                                            label: _("Save"),
540
                                            container: "action",
540
                                            container: "action",
541
                                            onclick: {fn: Check }
541
                                            onclick: {fn: Check }
542
                                        });
542
                                        });
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-topissues.tt (-2 / +2 lines)
Lines 52-58 function Dopop(link) { Link Here
52
		<caption>The [% limit %] most checked-out 
52
		<caption>The [% limit %] most checked-out 
53
        [% IF ( itemtype ) %]
53
        [% IF ( itemtype ) %]
54
            [% itemtype %]
54
            [% itemtype %]
55
        [% ELSE %] titles[% END %]
55
        [% END %]
56
        [% IF ( branch ) %]
56
        [% IF ( branch ) %]
57
        at 
57
        at 
58
        [% branch %]
58
        [% branch %]
Lines 120-126 function Dopop(link) { Link Here
120
                        [% END %]
120
                        [% END %]
121
                    </select></li>
121
                    </select></li>
122
			<li>
122
			<li>
123
            <label for="timeLimit">Acquired in the last:</label> <select name="timeLimit" id="timeLimit">
123
            <label for="timeLimit">of the the last:</label> <select name="timeLimit" id="timeLimit">
124
                [% IF ( timeLimit == 3 ) %]<option value="3" selected="selected">3 months</option>[% ELSE %]<option value="3">3 months</option>[% END %]
124
                [% IF ( timeLimit == 3 ) %]<option value="3" selected="selected">3 months</option>[% ELSE %]<option value="3">3 months</option>[% END %]
125
                 [% IF ( timeLimit == 6 ) %]<option value="6" selected="selected">6 months</option>[% ELSE %]<option value="6">6 months</option>[% END %]
125
                 [% IF ( timeLimit == 6 ) %]<option value="6" selected="selected">6 months</option>[% ELSE %]<option value="6">6 months</option>[% END %]
126
                 [% IF ( timeLimit == 12 ) %]<option value="12" selected="selected">12 months</option>[% ELSE %]<option value="12">12 months</option>[% END %]
126
                 [% IF ( timeLimit == 12 ) %]<option value="12" selected="selected">12 months</option>[% ELSE %]<option value="12">12 months</option>[% END %]
(-)a/opac/opac-topissues.pl (-3 / +2 lines)
Lines 122-129 if($timeLimit eq 999){ $timeLimitFinite = 0 }; Link Here
122
122
123
$template->param(do_it => 1,
123
$template->param(do_it => 1,
124
                limit => $limit,
124
                limit => $limit,
125
                branch => $branches->{$branch}->{branchname} || 'all locations',
125
                branch => $branches->{$branch}->{branchname},
126
                itemtype => $itemtypes->{$itemtype}->{description} || 'item types',
126
                itemtype => $itemtypes->{$itemtype}->{description},
127
                timeLimit => $timeLimit,
127
                timeLimit => $timeLimit,
128
                timeLimitFinite => $timeLimit,
128
                timeLimitFinite => $timeLimit,
129
                results_loop => \@results,
129
                results_loop => \@results,
130
- 

Return to bug 6141