From b2abaf04e1951d31c30f1e45f1903f0d13d4a025 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 23 Jan 2015 08:22:28 -0500 Subject: [PATCH] Bug 13040 [QA Followup] - Fix koha-qa.pl issues Signed-off-by: Kyle M Hall --- .../prog/en/includes/branch-selector.inc | 7 ++++++- .../prog/en/modules/help/tools/export.tt | 20 ++++++++++---------- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc index a5ce611..f3aa11a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc @@ -9,7 +9,12 @@ END %]
[% FOREACH branch IN branches %]
- + [% IF branch.selected || (selectall == 1) %] + + [% ELSE %] + + [% END %] +
[% IF loop.count() % 4 == 0 && !loop.last() %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt index 31a64c2..e0fd1fb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt @@ -13,24 +13,24 @@
  • Choose to limit your export by any one or more of the following options
      -
    • Limit to a bib number range
    • -
    • Limit to a specific item type
    • -
    • Limit to a specific set of libraries
    • -
    • Limit to a call number range
    • -
    • Limit to an acquisition date range
    • +
    • Limit to a bib number range
    • +
    • Limit to a specific item type
    • +
    • Limit to a specific set of libraries
    • +
    • Limit to a call number range
    • +
    • Limit to an acquisition date range
  • Next choose what to skip when exporting
      -
    • By default items will be exported, if you would like to only export bibliographic data, check the 'Don't export items' box
    • -
    • To limit your export only to items from the library you're logged in as, check the 'Remove non-local items' box
    • -
    • You can also choose what fields you don't want to export. This can be handy if you're sharing your data, you can remove all local fields before sending your data to another library
    • +
    • By default items will be exported, if you would like to only export bibliographic data, check the 'Don't export items' box
    • +
    • To limit your export only to items from the library you're logged in as, check the 'Remove non-local items' box
    • +
    • You can also choose what fields you don't want to export. This can be handy if you're sharing your data, you can remove all local fields before sending your data to another library
  • Finally choose the file type and file name
      -
    • Choose to export your data in marc or marcxml format
    • -
    • Choose the name you want your file to save as
    • +
    • Choose to export your data in marc or marcxml format
    • +
    • Choose the name you want your file to save as
  • Click 'Export bibliographic records'
  • -- 1.7.2.5