[koha-commits] main Koha release repository branch master updated. v17.11.00-406-g0927962

Git repo owner gitmaster at git.koha-community.org
Fri Feb 9 17:58:24 CET 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  0927962b45016fb30e378ddf4860ed7f4a0b7f59 (commit)
       via  571c088ceec98f34320f27e505245a0cdfa52a82 (commit)
       via  f3453684dfe388314cda39d4ace23041d1b6af98 (commit)
       via  91198900191ee53051f64a0f7bb1d14b712d3ce0 (commit)
       via  d77d371c4fe679c416554806da0d1c94ec06bc02 (commit)
       via  bb98e99dc6349ba316889e2123f6218d42863fc7 (commit)
       via  0ad922011cc330397d9b680b0d045bfd48e85f44 (commit)
       via  0f43bdd6416cf997bf656f5f3766f6f6020b52a5 (commit)
       via  f89a2bbdbeefe2befe77c2985a11109d3e23ac88 (commit)
       via  43c67312a02c60f77f8a164b3766dbcbd8196554 (commit)
       via  3e23c85bceb61f81c1487c1812844631fa0f9a5a (commit)
       via  bc2a79f86b7fd9268ec4b2cd85f5a9c871bff12a (commit)
      from  e6f8059a04144bf9247a6f43e19f83ba2c4f7f9a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0927962b45016fb30e378ddf4860ed7f4a0b7f59
Author: Liz Rea <liz at catalyst.net.nz>
Date:   Wed Dec 13 15:14:58 2017 +1300

    Bug 19801: Display messages on user details page as well as on check out page
    
    To test:
    
    Look up a borrower, add a message (internal or opac)
    Click the Details tab for that borrower
    Messages should be displayed above the user information [is this the right place? it could go below]
    adding messages on this page should make them immediately available
    deleting messages on this page should delete them immediately and bring you back to the detail page.
    
    Basically, make sure messages work from both the Check out and detail pages and that there are no typos.
    
    Messages should work the same as they always have from the Check Out page.
    
    sponsored-by: Catalyst IT
    Signed-off-by: Simon Pouchol <simon.pouchol at biblibre.com>
    
    Signed-off-by: Marjorie Vila <marjorie.barry-vila at collecto.ca>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>
    
    Bug 19801 - Fixes for QA
    
    - Fixes indentation
    - changes messages to patron_messages (even though it's not like that on the circulation page.)
    
    Signed-off-by: Marjorie Vila <marjorie.barry-vila at collecto.ca>
    Signed-off-by: Alex Arnaud <alex.arnaud at biblibre.com>

commit 571c088ceec98f34320f27e505245a0cdfa52a82
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Thu Jan 4 14:16:42 2018 +0000

    Bug 10032: (follow-up) Move title attribute to button container
    
    This patch modifies the "Close basket" button markup so that the title
    attribute on a disabled button is added to the button wrapper <div>
    instead of the <a> tag. This allows the title attribute tooltip to
    appear when the cursor is hovered over the button.
    
    To test, follow the original patch's test plan and confirm that when the
    "Close basket" button is disabled, hovering the mouse over the button
    triggers the title attribute tooltip.
    
    Signed-off-by: Charlotte Cordwell <charlotte.cordwell123 at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>

commit f3453684dfe388314cda39d4ace23041d1b6af98
Author: Jon Knight <J.P.Knight at lboro.ac.uk>
Date:   Tue Dec 12 17:50:36 2017 +0000

    Bug 10032: Improve GUI when uncertain price prevents closing the basket
    
    Added disabled "Close this basket" button when uncertain
    prices are present.
    Note that whilst this has a "title" attribute, there is no tooltip
    shown because JQueryUI disabled buttons don't get DOM events.
    
    https://bugs.koha-community.org/show_bug.cgi?id=10032
    
    Signed-off-by: Charlotte Cordwell <charlotte.cordwell123 at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>

commit 91198900191ee53051f64a0f7bb1d14b712d3ce0
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed Feb 7 17:42:09 2018 +0000

    Bug 20156: Display a markup for the current language in header menu
    
    This patch replaces Glyphicon markup with Font Awesome markup so that a
    check mark appears next to the currently-selected language in the staff
    client header's language menu.
    
    Also changed in this patch: Some classes have been removed because they
    are not used in staff client CSS.
    
    To test you must have multiple languages installed and enabled in the
    staff client.
    
     - Set the StaffLangSelectorMode system preference to "top" or "both top
       and footer"
     - Confirm that the currently-select language in the langauge menu has a
       check mark next to it.
    
    Signed-off-by: Jon Knight <J.P.Knight at lboro.ac.uk>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>

commit d77d371c4fe679c416554806da0d1c94ec06bc02
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Feb 5 10:28:37 2018 -0300

    Bug 20134: Remove /api/v1/app.pl from the generated URLs
    
    This patch removes the /api/v1/app.pl prefix from generated baseUrl.
    It has the consequence of hardcoding / as the base path for the API.
    
    This is ok because we don't currently support mounting Koha pieces in
    different than hardcoded paths (/cgi-bin/koha?), but certainly worth
    mentioning because this will need to depend on a syspref or config entry
    when someone chages this behviour.
    
    To test:
    - On master, point your browser to:
      http://kohadev.mydnsname.org:8080/api/v1/
    => FAIL: basePath looks like /api/v1/app.pl/api/v1
    - Apply this patch
    - Restart memcached and plack:
      $ restart_all
    or
      $ sudo systemctl restart memcached && sudo systemctl restart
      koha-common
    - Reload http://kohadev.mydnsname.org:8080/api/v1/
    => SUCCESS: basePath is /api/v1
    - Sign off :-D
    
    Signed-off-by: Julian Maurice <julian.maurice at biblibre.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>

commit bb98e99dc6349ba316889e2123f6218d42863fc7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Feb 6 10:41:03 2018 -0300

    Bug 12904: Fix occurrences not caught by script
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>

commit 0ad922011cc330397d9b680b0d045bfd48e85f44
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jan 23 10:22:47 2018 -0300

    Bug 12904: Force browser to load new javascript files after upgrade
    
    This patch has been automatically generated using:
      perl kv.pl **/*.tt **/*.inc
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>

commit 0f43bdd6416cf997bf656f5f3766f6f6020b52a5
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jan 23 10:24:52 2018 -0300

    Bug 12904: Pass KOHA_VERSION in C4::Auth
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>

commit f89a2bbdbeefe2befe77c2985a11109d3e23ac88
Author: Olli-Antti Kivilahti <olli-antti.kivilahti at jns.fi>
Date:   Wed May 24 09:34:17 2017 -0400

    Bug 12904: Add mod_expire to etc/koha-httpd.conf
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>

commit 43c67312a02c60f77f8a164b3766dbcbd8196554
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Dec 22 15:42:30 2016 +0000

    Bug 12904: Apache configuration
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Olli-Antti Kivilahti <olli-antti.kivilahti at jns.fi>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>

commit 3e23c85bceb61f81c1487c1812844631fa0f9a5a
Author: Victor Grousset <victor.grousset at biblibre.com>
Date:   Wed Jan 10 16:07:36 2018 +0100

    Bug 19928: Acquisitions' CSV exports now honors syspref "delimiter"
    
    Bonus fixes:
    - Basketgroup: there was an unnecessary space.
      " RRP tax excluded" replaced by "RRP tax excluded"
    - Late orders:
      - leading spaces before every line
      - surrounding spaces for [% orders.size %]
    
    Other changes:
    - quoted "Total orders in late" to no worry about additional spaces
    - Late orders: additional spaces which shouldn't be a problem because
      all the fields are enclosed by quotes.
    
    Test plan:
    1. Set syspref "delimiter" to "#'s"
    2. Change the language e.g. FR-fr
    
    3. Create a vendor with minimal info
    4. Create a basket with two items
    5. Go to the basket. URL should be
       /cgi-bin/koha/acqui/basket.pl?basketno=XXXXX
    6. Close this basket
    7. "Export as CSV"
    8. You should see that the file contains commas "," This is the bug.
       Leave the file open for future comparison to ensure that there are
       no regressions.
    
    9. Create a basket group with two baskets
       (tick the close this basket group check box)
    10. Go to the "Closed" tab to see your basket group
    11. "Export as CSV"
    12. You should see that the file contains commas "," This is the bug.
        Leave the file open for future comparison to ensure that there are
        no regressions.
    
    13. Go to /cgi-bin/koha/acqui/lateorders.pl
    14. Tick two orders. Of the same vendor, otherwise Koha won't let you tick
        orders of different vendors.
    15. "Export as CSV"
    16. You should see that the file contains commas "," This is the bug.
        Leave the file open for future comparison to ensure that there are
        no regressions.
    
    17. Apply this patch
    18. Translation stuff
        1. cd misc/translator
        2. perl translate update YOUR_LANG
        3. manually edit the po file, remove the fuzzy tags.
           And translate the string. You can just copy the original and
           replace some parts by gibberish.
        4. perl translate install YOUR_LANG
    
    19. Re-export the same CSVs and compare with the original version to check that
        - delimiter syspref is honored
        - the headers are translatable
        - there is no whitespace regression (additional newlines or spaces)
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>

commit bc2a79f86b7fd9268ec4b2cd85f5a9c871bff12a
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Feb 7 11:27:50 2018 -0300

    Bug 7143: Fix typo developper vs developer

-----------------------------------------------------------------------

Summary of changes:
 C4/Auth.pm                                         |    2 +
 Koha/REST/V1.pm                                    |    5 +++
 circ/del_message.pl                                |    9 ++++-
 debian/templates/apache-shared-intranet.conf       |    2 +
 debian/templates/apache-shared-opac.conf           |    2 +
 docs/history.txt                                   |   24 +++++------
 etc/koha-httpd.conf                                |   20 ++++++++++
 .../prog/en/includes/csv_headers/acqui/basket.tt   |    5 ++-
 .../en/includes/csv_headers/acqui/basketgroup.tt   |    5 ++-
 .../en/includes/csv_headers/acqui/lateorders.tt    |    5 ++-
 .../intranet-tmpl/prog/en/includes/datatables.inc  |   10 ++---
 .../prog/en/includes/doc-head-close-receipt.inc    |    2 +-
 .../prog/en/includes/doc-head-close.inc            |   14 +++----
 .../intranet-tmpl/prog/en/includes/greybox.inc     |    6 +--
 .../intranet-tmpl/prog/en/includes/help-top.inc    |   18 ++++-----
 .../prog/en/includes/installer-doc-head-close.inc  |   16 ++++----
 .../prog/en/includes/intranetstylesheet.inc        |    2 +-
 .../intranet-tmpl/prog/en/includes/js_includes.inc |   22 +++++-----
 .../prog/en/includes/langmenu-staff-top.inc        |    8 ++--
 .../intranet-tmpl/prog/en/includes/select2.inc     |    4 +-
 .../prog/en/includes/wysiwyg-systempreferences.inc |    2 +-
 .../prog/en/modules/acqui/acqui-home.tt            |    6 +--
 .../prog/en/modules/acqui/addorderiso2709.tt       |    8 ++--
 .../intranet-tmpl/prog/en/modules/acqui/basket.tt  |    9 +++--
 .../prog/en/modules/acqui/basketgroup.tt           |   20 +++++-----
 .../prog/en/modules/acqui/basketheader.tt          |    4 +-
 .../prog/en/modules/acqui/booksellers.tt           |    2 +-
 .../prog/en/modules/acqui/csv/basket.tt            |   19 ++++++++-
 .../prog/en/modules/acqui/csv/basketgroup.tt       |   32 ++++++++++++++-
 .../prog/en/modules/acqui/csv/lateorders.tt        |   18 ++++++++-
 .../prog/en/modules/acqui/edifactmsgs.tt           |    4 +-
 .../prog/en/modules/acqui/histsearch.tt            |    6 +--
 .../prog/en/modules/acqui/invoice-files.tt         |    4 +-
 .../intranet-tmpl/prog/en/modules/acqui/invoice.tt |    4 +-
 .../prog/en/modules/acqui/invoices.tt              |    2 +-
 .../prog/en/modules/acqui/lateorders.tt            |    4 +-
 .../prog/en/modules/acqui/neworderbiblio.tt        |    2 +-
 .../prog/en/modules/acqui/neworderempty.tt         |    8 ++--
 .../prog/en/modules/acqui/newordersubscription.tt  |    2 +-
 .../prog/en/modules/acqui/newordersuggestion.tt    |    2 +-
 .../intranet-tmpl/prog/en/modules/acqui/ordered.tt |    2 +-
 .../prog/en/modules/acqui/orderreceive.tt          |    6 +--
 .../intranet-tmpl/prog/en/modules/acqui/parcel.tt  |    6 +--
 .../intranet-tmpl/prog/en/modules/acqui/parcels.tt |    2 +-
 .../intranet-tmpl/prog/en/modules/acqui/spent.tt   |    2 +-
 .../prog/en/modules/acqui/supplier.tt              |    2 +-
 .../prog/en/modules/acqui/uncertainprice.tt        |    4 +-
 .../prog/en/modules/acqui/z3950_search.tt          |    6 +--
 .../prog/en/modules/admin/aqbudgetperiods.tt       |    6 +--
 .../prog/en/modules/admin/aqbudgets.tt             |    8 ++--
 .../prog/en/modules/admin/aqcontract.tt            |    2 +-
 .../intranet-tmpl/prog/en/modules/admin/aqplan.tt  |    4 +-
 .../prog/en/modules/admin/audio_alerts.tt          |    4 +-
 .../en/modules/admin/auth_subfields_structure.tt   |    2 +-
 .../prog/en/modules/admin/auth_tag_structure.tt    |    4 +-
 .../prog/en/modules/admin/authorised_values.tt     |    4 +-
 .../prog/en/modules/admin/authtypes.tt             |    4 +-
 .../prog/en/modules/admin/biblio_framework.tt      |    6 +--
 .../en/modules/admin/branch_transfer_limits.tt     |    6 +--
 .../prog/en/modules/admin/branches.tt              |    6 +--
 .../prog/en/modules/admin/categories.tt            |    6 +--
 .../prog/en/modules/admin/checkmarc.tt             |    2 +-
 .../intranet-tmpl/prog/en/modules/admin/cities.tt  |    4 +-
 .../prog/en/modules/admin/classsources.tt          |    2 +-
 .../prog/en/modules/admin/clone-rules.tt           |    2 +-
 .../prog/en/modules/admin/columns_settings.tt      |    2 +-
 .../prog/en/modules/admin/currency.tt              |    4 +-
 .../prog/en/modules/admin/didyoumean.tt            |    2 +-
 .../prog/en/modules/admin/edi_accounts.tt          |    2 +-
 .../prog/en/modules/admin/edi_ean_accounts.tt      |    2 +-
 .../prog/en/modules/admin/fieldmapping.tt          |    2 +-
 .../en/modules/admin/item_circulation_alerts.tt    |    2 +-
 .../prog/en/modules/admin/items_search_field.tt    |    2 +-
 .../prog/en/modules/admin/items_search_fields.tt   |    4 +-
 .../prog/en/modules/admin/itemtypes.tt             |    4 +-
 .../prog/en/modules/admin/koha2marclinks.tt        |    4 +-
 .../prog/en/modules/admin/localization.tt          |    2 +-
 .../en/modules/admin/marc_subfields_structure.tt   |    4 +-
 .../prog/en/modules/admin/marctagstructure.tt      |    6 +--
 .../prog/en/modules/admin/matching-rules.tt        |    2 +-
 .../prog/en/modules/admin/oai_set_mappings.tt      |    2 +-
 .../prog/en/modules/admin/oai_sets.tt              |    2 +-
 .../prog/en/modules/admin/patron-attr-types.tt     |    2 +-
 .../prog/en/modules/admin/preferences.tt           |   12 +++---
 .../prog/en/modules/admin/printers.tt              |    2 +-
 .../admin/searchengine/elasticsearch/mappings.tt   |    2 +-
 .../prog/en/modules/admin/smart-rules.tt           |    2 +-
 .../prog/en/modules/admin/sms_providers.tt         |    4 +-
 .../prog/en/modules/admin/sru_modmapping.tt        |    2 +-
 .../prog/en/modules/admin/systempreferences.tt     |    2 +-
 .../prog/en/modules/admin/transport-cost-matrix.tt |    2 +-
 .../prog/en/modules/admin/usage_statistics.tt      |    2 +-
 .../prog/en/modules/admin/z3950servers.tt          |    4 +-
 .../prog/en/modules/authorities/authorities.tt     |    6 +--
 .../prog/en/modules/authorities/detail.tt          |    2 +-
 .../prog/en/modules/authorities/merge.tt           |    2 +-
 .../intranet-tmpl/prog/en/modules/basket/basket.tt |    6 +--
 .../prog/en/modules/catalogue/ISBDdetail.tt        |    4 +-
 .../prog/en/modules/catalogue/MARCdetail.tt        |    4 +-
 .../prog/en/modules/catalogue/advsearch.tt         |    2 +-
 .../prog/en/modules/catalogue/detail.tt            |   10 ++---
 .../prog/en/modules/catalogue/imageviewer.tt       |    2 +-
 .../prog/en/modules/catalogue/itemsearch.tt        |    8 ++--
 .../prog/en/modules/catalogue/labeledMARCdetail.tt |    4 +-
 .../prog/en/modules/catalogue/moredetail.tt        |    4 +-
 .../prog/en/modules/catalogue/results.tt           |    4 +-
 .../prog/en/modules/catalogue/search-history.tt    |    4 +-
 .../prog/en/modules/cataloguing/addbiblio.tt       |    8 ++--
 .../prog/en/modules/cataloguing/additem.tt         |    8 ++--
 .../prog/en/modules/cataloguing/editor.tt          |    2 +-
 .../prog/en/modules/cataloguing/merge.tt           |    2 +-
 .../cataloguing/value_builder/cn_browser.tt        |    2 +-
 .../en/modules/cataloguing/z3950_auth_search.tt    |    6 +--
 .../prog/en/modules/cataloguing/z3950_search.tt    |    6 +--
 .../prog/en/modules/circ/circulation.tt            |   14 +++----
 .../en/modules/circ/circulation_batch_checkouts.tt |    2 +-
 .../intranet-tmpl/prog/en/modules/circ/offline.tt  |    6 +--
 .../intranet-tmpl/prog/en/modules/circ/overdue.tt  |    2 +-
 .../prog/en/modules/circ/pendingreserves.tt        |    2 +-
 .../prog/en/modules/circ/printslip.tt              |    2 +-
 .../prog/en/modules/circ/request-article.tt        |    2 +-
 .../prog/en/modules/circ/reserveratios.tt          |    2 +-
 .../intranet-tmpl/prog/en/modules/circ/returns.tt  |    4 +-
 .../prog/en/modules/circ/transferstoreceive.tt     |    2 +-
 .../prog/en/modules/circ/view_holdsqueue.tt        |    2 +-
 .../prog/en/modules/circ/waitingreserves.tt        |    2 +-
 .../prog/en/modules/clubs/club-enrollments.tt      |    4 +-
 .../intranet-tmpl/prog/en/modules/clubs/clubs.tt   |    4 +-
 .../prog/en/modules/common/patron_search.tt        |    2 +-
 .../en/modules/course_reserves/course-details.tt   |    2 +-
 .../en/modules/course_reserves/course-reserves.tt  |    2 +-
 .../intranet-tmpl/prog/en/modules/help/edithelp.tt |    4 +-
 .../prog/en/modules/ill/ill-requests.tt            |    4 +-
 .../intranet-tmpl/prog/en/modules/intranet-main.tt |    2 +-
 .../prog/en/modules/labels/label-edit-batch.tt     |    2 +-
 .../prog/en/modules/labels/label-home.tt           |    2 +-
 .../prog/en/modules/labels/label-manage.tt         |    2 +-
 .../intranet-tmpl/prog/en/modules/labels/result.tt |    2 +-
 .../prog/en/modules/labels/spinelabel-print.tt     |    6 +--
 .../prog/en/modules/members/boraccount.tt          |    2 +-
 .../prog/en/modules/members/holdshistory.tt        |    2 +-
 .../prog/en/modules/members/member-flags.tt        |    4 +-
 .../prog/en/modules/members/member.tt              |    2 +-
 .../prog/en/modules/members/memberentrygen.tt      |    4 +-
 .../prog/en/modules/members/moremember-receipt.tt  |    2 +-
 .../prog/en/modules/members/moremember.tt          |   42 +++++++++++++++-----
 .../prog/en/modules/members/notices.tt             |    2 +-
 .../intranet-tmpl/prog/en/modules/members/pay.tt   |    2 +-
 .../prog/en/modules/members/printfeercpt.tt        |    2 +-
 .../prog/en/modules/members/printinvoice.tt        |    2 +-
 .../en/modules/members/purchase-suggestions.tt     |    2 +-
 .../prog/en/modules/members/readingrec.tt          |    2 +-
 .../prog/en/modules/members/statistics.tt          |    2 +-
 .../prog/en/modules/members/update-child.tt        |    2 +-
 .../prog/en/modules/offline_circ/list.tt           |    2 +-
 .../prog/en/modules/offline_circ/process_koc.tt    |    4 +-
 .../prog/en/modules/onboarding/onboardingstep2.tt  |    2 +-
 .../prog/en/modules/onboarding/onboardingstep3.tt  |    2 +-
 .../prog/en/modules/onboarding/onboardingstep4.tt  |    2 +-
 .../prog/en/modules/onboarding/onboardingstep5.tt  |    2 +-
 .../prog/en/modules/patron_lists/add-modify.tt     |    2 +-
 .../prog/en/modules/patron_lists/list.tt           |    6 +--
 .../prog/en/modules/patron_lists/lists.tt          |    4 +-
 .../prog/en/modules/patroncards/edit-batch.tt      |    2 +-
 .../prog/en/modules/plugins/plugins-home.tt        |    2 +-
 .../prog/en/modules/reports/cash_register_stats.tt |    2 +-
 .../en/modules/reports/guided_reports_start.tt     |    2 +-
 .../prog/en/modules/reports/itemslost.tt           |    2 +-
 .../prog/en/modules/reports/itemtypes.tt           |    2 +-
 .../prog/en/modules/reports/orders_by_budget.tt    |    2 +-
 .../prog/en/modules/reports/serials_stats.tt       |    2 +-
 .../prog/en/modules/reserve/request.tt             |    2 +-
 .../prog/en/modules/reviews/reviewswaiting.tt      |    2 +-
 .../en/modules/rotating_collections/addItems.tt    |    4 +-
 .../rotating_collections/editCollections.tt        |    4 +-
 .../rotating_collections/rotatingCollections.tt    |    6 +--
 .../rotating_collections/transferCollection.tt     |    4 +-
 .../prog/en/modules/serials/add_fields.tt          |    2 +-
 .../prog/en/modules/serials/claims.tt              |    2 +-
 .../prog/en/modules/serials/serials-collection.tt  |    6 +--
 .../prog/en/modules/serials/serials-edit.tt        |    4 +-
 .../prog/en/modules/serials/serials-home.tt        |    2 +-
 .../prog/en/modules/serials/serials-search.tt      |    4 +-
 .../prog/en/modules/serials/subscription-add.tt    |    4 +-
 .../prog/en/modules/serials/subscription-detail.tt |    2 +-
 .../modules/serials/subscription-numberpatterns.tt |    4 +-
 .../prog/en/modules/suggestion/suggestion.tt       |    8 ++--
 .../intranet-tmpl/prog/en/modules/tags/list.tt     |    2 +-
 .../intranet-tmpl/prog/en/modules/tags/review.tt   |    6 +--
 .../tools/automatic_item_modification_by_age.tt    |    6 +--
 .../prog/en/modules/tools/batchMod-del.tt          |    8 ++--
 .../prog/en/modules/tools/batchMod-edit.tt         |   10 ++---
 .../prog/en/modules/tools/batchMod.tt              |    2 +-
 .../prog/en/modules/tools/batch_delete_records.tt  |    6 +--
 .../en/modules/tools/batch_record_modification.tt  |    8 ++--
 .../prog/en/modules/tools/cleanborrowers.tt        |    2 +-
 .../prog/en/modules/tools/csv-profiles.tt          |    2 +-
 .../intranet-tmpl/prog/en/modules/tools/export.tt  |    2 +-
 .../prog/en/modules/tools/holidays.tt              |    4 +-
 .../prog/en/modules/tools/inventory.tt             |    6 +--
 .../prog/en/modules/tools/koha-news.tt             |    6 +--
 .../intranet-tmpl/prog/en/modules/tools/letter.tt  |    8 ++--
 .../prog/en/modules/tools/manage-marc-import.tt    |    6 +--
 .../modules/tools/marc_modification_templates.tt   |    4 +-
 .../prog/en/modules/tools/modborrowers.tt          |    4 +-
 .../prog/en/modules/tools/overduerules.tt          |    2 +-
 .../prog/en/modules/tools/quotes-upload.tt         |   10 ++---
 .../intranet-tmpl/prog/en/modules/tools/quotes.tt  |   10 ++---
 .../prog/en/modules/tools/scheduler.tt             |    2 +-
 .../prog/en/modules/tools/showdiffmarc.tt          |    4 +-
 .../prog/en/modules/tools/stage-marc-import.tt     |    6 +--
 .../prog/en/modules/tools/upload-images.tt         |    6 +--
 .../intranet-tmpl/prog/en/modules/tools/upload.tt  |    6 +--
 .../intranet-tmpl/prog/en/modules/tools/viewlog.tt |    2 +-
 .../prog/en/modules/virtualshelves/shelves.tt      |    8 ++--
 .../opac-tmpl/bootstrap/en/includes/datatables.inc |    4 +-
 .../bootstrap/en/includes/doc-head-close.inc       |   18 ++++-----
 .../opac-tmpl/bootstrap/en/includes/greybox.inc    |    6 +--
 .../bootstrap/en/includes/opac-bottom.inc          |   36 ++++++++---------
 .../opac-tmpl/bootstrap/en/modules/opac-account.tt |    2 +-
 .../bootstrap/en/modules/opac-advsearch.tt         |    4 +-
 .../bootstrap/en/modules/opac-auth-MARCdetail.tt   |    2 +-
 .../bootstrap/en/modules/opac-auth-detail.tt       |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-basket.tt  |    2 +-
 .../bootstrap/en/modules/opac-course-details.tt    |    2 +-
 .../bootstrap/en/modules/opac-course-reserves.tt   |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-detail.tt  |   14 +++----
 .../bootstrap/en/modules/opac-memberentry.tt       |    2 +-
 .../bootstrap/en/modules/opac-overdrive-search.tt  |    6 +--
 .../opac-tmpl/bootstrap/en/modules/opac-passwd.tt  |    2 +-
 .../bootstrap/en/modules/opac-results-grouped.tt   |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-results.tt |   10 ++---
 .../bootstrap/en/modules/opac-search-history.tt    |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-shelves.tt |    2 +-
 .../bootstrap/en/modules/opac-suggestions.tt       |    2 +-
 .../opac-tmpl/bootstrap/en/modules/opac-user.tt    |    2 +-
 .../opac-tmpl/bootstrap/en/modules/sco/help.tt     |    8 ++--
 .../bootstrap/en/modules/sco/printslip.tt          |    6 +--
 .../opac-tmpl/bootstrap/en/modules/sco/sco-main.tt |    8 ++--
 members/moremember.pl                              |   14 +++++++
 240 files changed, 666 insertions(+), 519 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list