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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl (-2 / +2 lines)
Lines 557-570 function searchauthority() { Link Here
557
	var addauthButton = new YAHOO.widget.Button({
557
	var addauthButton = new YAHOO.widget.Button({
558
                                            id: "addauth", 
558
                                            id: "addauth", 
559
                                            type: "button", 
559
                                            type: "button", 
560
                                            label: "Save", 
560
                                            label: _("Save"), 
561
                                            container: "addauthc",
561
                                            container: "addauthc",
562
											onclick: {fn: Check }
562
											onclick: {fn: Check }
563
                                        });
563
                                        });
564
	var addauthButton2 = new YAHOO.widget.Button({
564
	var addauthButton2 = new YAHOO.widget.Button({
565
                                            id: "addauth2", 
565
                                            id: "addauth2", 
566
                                            type: "button", 
566
                                            type: "button", 
567
                                            label: "Save", 
567
                                            label: _("Save"), 
568
                                            container: "action",
568
                                            container: "action",
569
											onclick: {fn: Check }
569
											onclick: {fn: Check }
570
                                        });
570
                                        });
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-topissues.tmpl (-4 / +4 lines)
Lines 52-61 function Dopop(link) { Link Here
52
		<caption>The <!-- TMPL_VAR NAME="limit"--> most checked-out 
52
		<caption>The <!-- TMPL_VAR NAME="limit"--> most checked-out 
53
        <!-- TMPL_IF name="itemtype" -->
53
        <!-- TMPL_IF name="itemtype" -->
54
            <!-- TMPL_VAR name="itemtype" -->
54
            <!-- TMPL_VAR name="itemtype" -->
55
        <!-- TMPL_ELSE --> titles<!-- /TMPL_IF -->
55
        <!-- /TMPL_IF -->
56
        <!-- TMPL_IF name="branch" -->
56
        <!-- TMPL_IF name="branch" -->
57
        at 
57
            at 
58
        <!-- TMPL_VAR name="branch" -->
58
            <!-- TMPL_VAR name="branch" -->
59
        <!-- /TMPL_IF -->
59
        <!-- /TMPL_IF -->
60
        <!-- TMPL_IF name="timeLimitFinite" -->
60
        <!-- TMPL_IF name="timeLimitFinite" -->
61
        in the past <!-- TMPL_VAR name="timeLimitFinite" --> months
61
        in the past <!-- TMPL_VAR name="timeLimitFinite" --> months
Lines 120-126 function Dopop(link) { Link Here
120
                        <!-- /TMPL_LOOP -->
120
                        <!-- /TMPL_LOOP -->
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 last:</label> <select name="timeLimit" id="timeLimit">
124
                <!-- TMPL_IF EXPR="timeLimit == 3" --><option value="3" selected="selected">3 months</option><!-- TMPL_ELSE --><option value="3">3 months</option><!-- /TMPL_IF -->
124
                <!-- TMPL_IF EXPR="timeLimit == 3" --><option value="3" selected="selected">3 months</option><!-- TMPL_ELSE --><option value="3">3 months</option><!-- /TMPL_IF -->
125
                 <!-- TMPL_IF EXPR="timeLimit == 6" --><option value="6" selected="selected">6 months</option><!-- TMPL_ELSE --><option value="6">6 months</option><!-- /TMPL_IF -->
125
                 <!-- TMPL_IF EXPR="timeLimit == 6" --><option value="6" selected="selected">6 months</option><!-- TMPL_ELSE --><option value="6">6 months</option><!-- /TMPL_IF -->
126
                 <!-- TMPL_IF EXPR="timeLimit == 12" --><option value="12" selected="selected">12 months</option><!-- TMPL_ELSE --><option value="12">12 months</option><!-- /TMPL_IF -->
126
                 <!-- TMPL_IF EXPR="timeLimit == 12" --><option value="12" selected="selected">12 months</option><!-- TMPL_ELSE --><option value="12">12 months</option><!-- /TMPL_IF -->
(-)a/opac/opac-topissues.pl (-3 / +2 lines)
Lines 114-121 if($timeLimit eq 999){ $timeLimitFinite = 0 }; Link Here
114
114
115
$template->param(do_it => 1,
115
$template->param(do_it => 1,
116
                limit => $limit,
116
                limit => $limit,
117
                branch => $branches->{$branch}->{branchname} || 'all locations',
117
                branch => $branches->{$branch}->{branchname},
118
                itemtype => $itemtypes->{$itemtype}->{description} || 'item types',
118
                itemtype => $itemtypes->{$itemtype}->{description},
119
                timeLimit => $timeLimit,
119
                timeLimit => $timeLimit,
120
                timeLimitFinite => $timeLimit,
120
                timeLimitFinite => $timeLimit,
121
                results_loop => \@results,
121
                results_loop => \@results,
122
- 

Return to bug 6141