@@ -, +, @@ --- .../prog/en/modules/authorities/authorities.tmpl | 4 ++-- .../opac-tmpl/prog/en/modules/opac-topissues.tmpl | 8 ++++---- opac/opac-topissues.pl | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl @@ -557,14 +557,14 @@ function searchauthority() { var addauthButton = new YAHOO.widget.Button({ id: "addauth", type: "button", - label: "Save", + label: _("Save"), container: "addauthc", onclick: {fn: Check } }); var addauthButton2 = new YAHOO.widget.Button({ id: "addauth2", type: "button", - label: "Save", + label: _("Save"), container: "action", onclick: {fn: Check } }); --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-topissues.tmpl +++ a/koha-tmpl/opac-tmpl/prog/en/modules/opac-topissues.tmpl @@ -52,10 +52,10 @@ function Dopop(link) { The most checked-out - titles + - at - + at + in the past months @@ -120,7 +120,7 @@ function Dopop(link) {
  • - --- a/opac/opac-topissues.pl +++ a/opac/opac-topissues.pl @@ -114,8 +114,8 @@ if($timeLimit eq 999){ $timeLimitFinite = 0 }; $template->param(do_it => 1, limit => $limit, - branch => $branches->{$branch}->{branchname} || 'all locations', - itemtype => $itemtypes->{$itemtype}->{description} || 'item types', + branch => $branches->{$branch}->{branchname}, + itemtype => $itemtypes->{$itemtype}->{description}, timeLimit => $timeLimit, timeLimitFinite => $timeLimit, results_loop => \@results, --