[koha-commits] main Koha release repository branch 3.18.x updated. v3.18.05.1-94-g02f7d6a

Git repo owner gitmaster at git.koha-community.org
Wed Apr 22 08:02:30 CEST 2015


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, 3.18.x has been updated
       via  02f7d6a4731cd58cb9653755acab8d9af6eb4542 (commit)
       via  40ad305c8e2014aaf832d44f0c5f5229ad979818 (commit)
       via  fed0dfbd83efc3146d02f2ee120d266f184083c2 (commit)
       via  b6b569973bee5295c8e0587d6b174e1e43cd7b5d (commit)
       via  3569c43a461b3f816a93322de435a7511c73d5ea (commit)
       via  02bcbadc953b7eb5a953e274560ac33a85dbe2b2 (commit)
       via  ad3121e388c4517e099fa0ddd679c37739b6d2e6 (commit)
      from  95d8d892a4ee1007fb69db8b69203f9a4796332a (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 02f7d6a4731cd58cb9653755acab8d9af6eb4542
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Tue Apr 14 13:45:14 2015 +0200

    Bug 10131: Add a fallback if the pref search is not a valid regex
    
    It's possible to search prefs using a regex.
    But it the regex is not correctly written, the app explodes.
    We should provide a fallback.
    
    Test plan:
    0/ Does not apply the patch
    1/ Search for sysprefs with "notes.*", note the number of results
    2/ Search for *notes*, boom
    3/ Apply the patch
    4/ Repeat 1 and confirm you get the same number of results
    5/ Repeat 2 and confirm you don't get the error anymore
    
    NOTE: As noted on comment #4, the kaboom is because of the
          leading * and not the following *, because 's*' is a valid
          regular expression, while '*n' is not.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 65cb0f5be636a15387a3996c32da051d4114719e)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 40ad305c8e2014aaf832d44f0c5f5229ad979818
Author: Marc Véron <veron at veron.ch>
Date:   Thu Mar 26 15:04:07 2015 +0100

    Bug 13917: OPAC: Putting holds still possible by URL even if turned off by system preference
    
    To test:
    
    1)
    Prepare an URL that put's a hold in OPAC (see comment #1), e.g.
    [YOUR SERVER]/cgi-bin/koha/opac-reserve.pl?biblionumbers=1
    
    2)
    Set system preference 'RequestOnOpac' to 'Don't allow patrons to place holds on items from the OPAC.'
    
    3)
    Go diectly to this URL.
    Result: The page displays to confirm hold (wrong)
    
    4)
    Apply patch
    
    5)
    Repeat step 3
    Result: Redirect to 404 page (OK)
    
    6)
    Set system preference to "Allow"
    
    7)
    Repeat step 3
    Result: The page displays to confirm hold (OK), like it would be from link in OPAC.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 20dc9ce5a1255fa7722e23b9300de19ec35eda16)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit fed0dfbd83efc3146d02f2ee120d266f184083c2
Author: Marc Véron <veron at veron.ch>
Date:   Sun Apr 19 21:04:21 2015 +0200

    Bug 14014 - Argument "" isn't numeric in numeric gt (>) in circulation.tt
    
    To test:
    
    Do some checkouts
    In intranet-error.log you get lines similar to:
    circulation.pl: Argument "" isn't numeric in numeric gt (>) at /usr/share/kohaclone/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt line 217.
    
    Apply patch
    The warning  should no longer appear.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at biblibre.com>
    To reproduce the confirmation message must be displayed.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 54469a1b4ca61123a58998f1097792b9a86563dc)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit b6b569973bee5295c8e0587d6b174e1e43cd7b5d
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Mon Apr 13 12:17:12 2015 +0200

    Bug 13981 - Transliterate rule for oe and ae
    
    NOTE : I use HTML codes for special characters to avoir encoding issues in patch file.
    
    In ICU configuration, add a transliterate rule for
    œ = oe
    æ = ae
    
    Test plan :
    - Without patch
    - Create a record R1 with title containing for example "cœur"
    - Create a record R2 with title containing for example "coeur"
    - Index those records
    - Search for "cœur"
    => You only find R1
    - Search for "coeur"
    => You only find R2
    - Apply patch
    - Restart zebra
    - Index R1 and R2
    - Search for "cœur"
    => You find R1 and R2
    - Search for "coeur"
    => You find R1 and R2
    (Same test plan for ae)
    
    ------
    Tested with all variants of Ae ae Oe oe. Search worked as expected.
    Note: The words with special characters were not highlighted, but I think this can be done in an other bug.
    Signed-off-by: Marc Veron <veron at veron.ch>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 9dbedfd854a255fc5f2e9479db96131ce87f2ee4)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 3569c43a461b3f816a93322de435a7511c73d5ea
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Fri Apr 17 17:04:59 2015 +0200

    Bug 9978: (followup) Replace license header with the correct license (GPLv3+)
    
    There was another form of the v2.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit ba0f84b46c5c565600575ef61d413067c768fa14)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit 02bcbadc953b7eb5a953e274560ac33a85dbe2b2
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Wed Apr 8 17:09:04 2015 +0200

    Bug 9978: Replace license header with the correct license (GPLv3+)
    
    Signed-off-by: Chris Nighswonger <cnighswonger at foundations.edu>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de>
    
    http://bugs.koha-community.org/show_bug.cgi?id=9987
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit a6c9bd0eb55c32d5632625144775271f20aa15f7)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

commit ad3121e388c4517e099fa0ddd679c37739b6d2e6
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Apr 9 16:05:59 2015 +0200

    Bug 13975: Remove compilation warning about encoding pragma deprecation
    
    Test plan:
    0/ Does not apply the patch
    1/ Launch the export_borrowers.pl script to export data with unicode characters
     % perl misc/export_borrowers.pl -w "borrowernumber=42" --field borrowernumber --field surname --field firstname
      Use of the encoding pragma is deprecated at misc/export_borrowers.pl
      7874,JOUBU,صةصةصة
    2/ Apply this patch
    3/ Repeat 1
     % perl misc/export_borrowers.pl -w "borrowernumber=42" --field borrowernumber --field surname --field firstname
      7874,JOUBU,صةصةصة
    
    Note that the deprecated message is gone and the encoding is correct.
    
    Signed-off-by: Frederic Demians <f.demians at tamil.fr>
    
      I confirm the warning (on Perl version above 5.14). And that the patch fix
      the warning.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit dbd8602280192e4e4cd9915ad8c345a2d40dfb72)
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>

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

Summary of changes:
 C4/Accounts.pm                                     |   20 ++++++-------
 C4/Acquisition.pm                                  |   20 ++++++-------
 C4/Auth.pm                                         |   20 ++++++-------
 C4/Auth_with_cas.pm                                |   20 ++++++-------
 C4/Auth_with_ldap.pm                               |   20 ++++++-------
 C4/AuthoritiesMarc.pm                              |   20 ++++++-------
 C4/AuthoritiesMarc/MARC21.pm                       |   20 ++++++-------
 C4/AuthoritiesMarc/UNIMARC.pm                      |   20 ++++++-------
 C4/BackgroundJob.pm                                |   20 ++++++-------
 C4/Barcodes.pm                                     |   20 ++++++-------
 C4/Barcodes/EAN13.pm                               |   20 ++++++-------
 C4/Barcodes/ValueBuilder.pm                        |   20 ++++++-------
 C4/Barcodes/annual.pm                              |   20 ++++++-------
 C4/Barcodes/hbyymmincr.pm                          |   20 ++++++-------
 C4/Barcodes/incremental.pm                         |   20 ++++++-------
 C4/Biblio.pm                                       |   20 ++++++-------
 C4/Bookseller.pm                                   |   20 ++++++-------
 C4/Boolean.pm                                      |   20 ++++++-------
 C4/Branch.pm                                       |   20 ++++++-------
 C4/Breeding.pm                                     |   20 ++++++-------
 C4/Budgets.pm                                      |   20 ++++++-------
 C4/Calendar.pm                                     |   20 ++++++-------
 C4/Category.pm                                     |   20 ++++++-------
 C4/Charset.pm                                      |   20 ++++++-------
 C4/Circulation.pm                                  |   20 ++++++-------
 C4/ClassSortRoutine.pm                             |   20 ++++++-------
 C4/ClassSortRoutine/Dewey.pm                       |   20 ++++++-------
 C4/ClassSortRoutine/Generic.pm                     |   20 ++++++-------
 C4/ClassSortRoutine/LCC.pm                         |   20 ++++++-------
 C4/ClassSource.pm                                  |   20 ++++++-------
 C4/Context.pm                                      |   20 ++++++-------
 C4/Contract.pm                                     |   20 ++++++-------
 C4/CourseReserves.pm                               |   20 ++++++-------
 C4/Creators.pm                                     |   20 ++++++-------
 C4/Creators/Lib.pm                                 |   20 ++++++-------
 C4/Creators/PDF.pm                                 |   20 ++++++-------
 C4/Csv.pm                                          |   20 ++++++-------
 C4/Dates.pm                                        |   20 ++++++-------
 C4/Debug.pm                                        |   20 ++++++-------
 C4/External/Amazon.pm                              |   20 ++++++-------
 C4/External/BakerTaylor.pm                         |   20 ++++++-------
 C4/External/Syndetics.pm                           |   20 ++++++-------
 C4/Form/MessagingPreferences.pm                    |   20 ++++++-------
 C4/HTML5Media.pm                                   |   20 ++++++-------
 C4/Heading.pm                                      |   20 ++++++-------
 C4/Heading/MARC21.pm                               |   20 ++++++-------
 C4/Heading/UNIMARC.pm                              |   20 ++++++-------
 C4/HoldsQueue.pm                                   |   20 ++++++-------
 C4/ILSDI/Services.pm                               |   20 ++++++-------
 C4/Images.pm                                       |   20 ++++++-------
 C4/ImportBatch.pm                                  |   20 ++++++-------
 C4/ImportExportFramework.pm                        |   20 ++++++-------
 C4/Input.pm                                        |   20 ++++++-------
 C4/InstallAuth.pm                                  |   20 ++++++-------
 C4/Installer.pm                                    |   20 ++++++-------
 C4/ItemCirculationAlertPreference.pm               |   20 ++++++-------
 C4/ItemType.pm                                     |   20 ++++++-------
 C4/Items.pm                                        |   20 ++++++-------
 C4/Koha.pm                                         |   20 ++++++-------
 C4/Languages.pm                                    |   20 ++++++-------
 C4/Letters.pm                                      |   20 ++++++-------
 C4/Linker.pm                                       |   20 ++++++-------
 C4/Linker/Default.pm                               |   20 ++++++-------
 C4/Linker/FirstMatch.pm                            |   20 ++++++-------
 C4/Linker/LastMatch.pm                             |   20 ++++++-------
 C4/Log.pm                                          |   20 ++++++-------
 C4/Matcher.pm                                      |   20 ++++++-------
 C4/Members.pm                                      |   20 ++++++-------
 C4/Members/AttributeTypes.pm                       |   20 ++++++-------
 C4/Members/Attributes.pm                           |   20 ++++++-------
 C4/Members/Messaging.pm                            |   20 ++++++-------
 C4/Members/Statistics.pm                           |   20 ++++++-------
 C4/Message.pm                                      |   20 ++++++-------
 C4/OAI/Sets.pm                                     |   20 ++++++-------
 C4/Output.pm                                       |   20 ++++++-------
 C4/Output/JSONStream.pm                            |   20 ++++++-------
 C4/Overdues.pm                                     |   20 ++++++-------
 C4/Patroncards/Lib.pm                              |   20 ++++++-------
 C4/Patroncards/Patroncard.pm                       |   20 ++++++-------
 C4/Print.pm                                        |   20 ++++++-------
 C4/Ratings.pm                                      |   20 ++++++-------
 C4/Record.pm                                       |   20 ++++++-------
 C4/Reports.pm                                      |   20 ++++++-------
 C4/Reports/Guided.pm                               |   20 ++++++-------
 C4/Reserves.pm                                     |   20 ++++++-------
 C4/Review.pm                                       |   20 ++++++-------
 C4/Ris.pm                                          |   20 ++++++-------
 C4/RotatingCollections.pm                          |   20 ++++++-------
 C4/SIP/ILS/Transaction/FeePayment.pm               |   20 ++++++-------
 C4/SMS.pm                                          |   20 ++++++-------
 C4/SQLHelper.pm                                    |   20 ++++++-------
 C4/Scheduler.pm                                    |   20 ++++++-------
 C4/Scrubber.pm                                     |   20 ++++++-------
 C4/Search.pm                                       |   20 ++++++-------
 C4/Search/PazPar2.pm                               |   20 ++++++-------
 C4/Serials.pm                                      |   20 ++++++-------
 C4/Service.pm                                      |   20 ++++++-------
 C4/ShelfBrowser.pm                                 |   20 ++++++-------
 C4/SocialData.pm                                   |   20 ++++++-------
 C4/Stats.pm                                        |   20 ++++++-------
 C4/Suggestions.pm                                  |   20 ++++++-------
 C4/TTParser.pm                                     |   20 ++++++-------
 C4/Tags.pm                                         |   20 ++++++-------
 C4/Templates.pm                                    |   20 ++++++-------
 C4/TmplToken.pm                                    |   20 ++++++-------
 C4/TmplTokenType.pm                                |   20 ++++++-------
 C4/UploadedFile.pm                                 |   20 ++++++-------
 C4/Utils/DataTables.pm                             |   20 ++++++-------
 C4/VirtualShelves.pm                               |   20 ++++++-------
 C4/VirtualShelves/Page.pm                          |   20 ++++++-------
 C4/XISBN.pm                                        |   20 ++++++-------
 Koha/Borrower/Files.pm                             |   20 ++++++-------
 Koha/Borrower/Modifications.pm                     |   20 ++++++-------
 Koha/Cache.pm                                      |   20 ++++++-------
 Koha/Filter/MARC/EmbedSeeFromHeadings.pm           |   20 ++++++-------
 Koha/Filter/MARC/Null.pm                           |   20 ++++++-------
 Koha/Plugins.pm                                    |   20 ++++++-------
 Koha/Plugins/Base.pm                               |   20 ++++++-------
 Koha/Plugins/Handler.pm                            |   20 ++++++-------
 Koha/RecordProcessor.pm                            |   20 ++++++-------
 Koha/RecordProcessor/Base.pm                       |   20 ++++++-------
 Koha/SuggestionEngine.pm                           |   20 ++++++-------
 Koha/SuggestionEngine/Base.pm                      |   20 ++++++-------
 Koha/SuggestionEngine/Plugin/AuthorityFile.pm      |   20 ++++++-------
 Koha/SuggestionEngine/Plugin/ExplodedTerms.pm      |   20 ++++++-------
 Koha/SuggestionEngine/Plugin/Null.pm               |   20 ++++++-------
 Koha/Template/Plugin/Branches.pm                   |   20 ++++++-------
 Koha/Template/Plugin/ItemTypes.pm                  |   20 ++++++-------
 Koha/Template/Plugin/Koha.pm                       |   20 ++++++-------
 Koha/Template/Plugin/KohaDates.pm                  |   20 ++++++-------
 Makefile.PL                                        |   20 ++++++-------
 about.pl                                           |   20 ++++++-------
 acqui/acqui-home.pl                                |   20 ++++++-------
 acqui/addorder.pl                                  |   20 ++++++-------
 acqui/addorderiso2709.pl                           |   20 ++++++-------
 acqui/basket.pl                                    |   20 ++++++-------
 acqui/basketgroup.pl                               |   20 ++++++-------
 acqui/basketheader.pl                              |   20 ++++++-------
 acqui/booksellers.pl                               |   20 ++++++-------
 acqui/check_budget_total.pl                        |   20 ++++++-------
 acqui/check_duplicate_barcode_ajax.pl              |   20 ++++++-------
 acqui/check_uniqueness.pl                          |   20 ++++++-------
 acqui/currency.pl                                  |   20 ++++++-------
 acqui/finishreceive.pl                             |   20 ++++++-------
 acqui/histsearch.pl                                |   20 ++++++-------
 acqui/invoice.pl                                   |   20 ++++++-------
 acqui/invoices.pl                                  |   20 ++++++-------
 acqui/lateorders.pl                                |   20 ++++++-------
 acqui/modordernotes.pl                             |   20 ++++++-------
 acqui/neworderbiblio.pl                            |   20 ++++++-------
 acqui/neworderempty.pl                             |   20 ++++++-------
 acqui/newordersubscription.pl                      |   20 ++++++-------
 acqui/newordersuggestion.pl                        |   20 ++++++-------
 acqui/ordered.pl                                   |   20 ++++++-------
 acqui/orderreceive.pl                              |   20 ++++++-------
 acqui/parcel.pl                                    |   20 ++++++-------
 acqui/parcels.pl                                   |   20 ++++++-------
 acqui/pdfformat/layout2pages.pm                    |   20 ++++++-------
 acqui/pdfformat/layout2pagesde.pm                  |   20 ++++++-------
 acqui/pdfformat/layout3pages.pm                    |   20 ++++++-------
 acqui/spent.pl                                     |   20 ++++++-------
 acqui/supplier.pl                                  |   20 ++++++-------
 acqui/uncertainprice.pl                            |   20 ++++++-------
 acqui/updatesupplier.pl                            |   20 ++++++-------
 acqui/z3950_search.pl                              |   20 ++++++-------
 admin/admin-home.pl                                |   20 ++++++-------
 admin/aqbudgetperiods.pl                           |   20 ++++++-------
 admin/aqbudgets.pl                                 |   20 ++++++-------
 admin/aqcontract.pl                                |   20 ++++++-------
 admin/aqplan.pl                                    |   20 ++++++-------
 admin/auth_subfields_structure.pl                  |   20 ++++++-------
 admin/auth_tag_structure.pl                        |   20 ++++++-------
 admin/authorised_values.pl                         |   20 ++++++-------
 admin/authtypes.pl                                 |   20 ++++++-------
 admin/biblio_framework.pl                          |   20 ++++++-------
 admin/branch_transfer_limits.pl                    |   20 ++++++-------
 admin/branches.pl                                  |   20 ++++++-------
 admin/categorie.pl                                 |   20 ++++++-------
 admin/check_budget_parent.pl                       |   20 ++++++-------
 admin/check_parent_total.pl                        |   20 ++++++-------
 admin/checkmarc.pl                                 |   20 ++++++-------
 admin/cities.pl                                    |   20 ++++++-------
 admin/classsources.pl                              |   20 ++++++-------
 admin/clone-rules.pl                               |   20 ++++++-------
 admin/currency.pl                                  |   20 ++++++-------
 admin/fieldmapping.pl                              |   20 ++++++-------
 admin/import_export_framework.pl                   |   20 ++++++-------
 admin/item_circulation_alerts.pl                   |   20 ++++++-------
 admin/itemtypes.pl                                 |   20 ++++++-------
 admin/koha2marclinks.pl                            |   20 ++++++-------
 admin/marc_subfields_structure.pl                  |   20 ++++++-------
 admin/marctagstructure.pl                          |   20 ++++++-------
 admin/matching-rules.pl                            |   20 ++++++-------
 admin/oai_set_mappings.pl                          |   20 ++++++-------
 admin/oai_sets.pl                                  |   20 ++++++-------
 admin/patron-attr-types.pl                         |   20 ++++++-------
 admin/preferences.pl                               |   30 +++++++++++++-------
 admin/printers.pl                                  |   20 ++++++-------
 admin/smart-rules.pl                               |   20 ++++++-------
 admin/stopwords.pl                                 |   20 ++++++-------
 admin/systempreferences.pl                         |   20 ++++++-------
 admin/transport-cost-matrix.pl                     |   20 ++++++-------
 authorities/auth_finder.pl                         |   20 ++++++-------
 authorities/authorities-home.pl                    |   20 ++++++-------
 authorities/authorities.pl                         |   20 ++++++-------
 authorities/blinddetail-biblio-search.pl           |   20 ++++++-------
 authorities/detail-biblio-search.pl                |   20 ++++++-------
 authorities/detail.pl                              |   20 ++++++-------
 authorities/ysearch.pl                             |   20 ++++++-------
 basket/basket.pl                                   |   20 ++++++-------
 basket/downloadcart.pl                             |   20 ++++++-------
 basket/sendbasket.pl                               |   20 ++++++-------
 catalogue/ISBDdetail.pl                            |   20 ++++++-------
 catalogue/MARCdetail.pl                            |   20 ++++++-------
 catalogue/detail.pl                                |   20 ++++++-------
 catalogue/getitem-ajax.pl                          |   20 ++++++-------
 catalogue/image.pl                                 |   20 ++++++-------
 catalogue/imageviewer.pl                           |   20 ++++++-------
 catalogue/issuehistory.pl                          |   20 ++++++-------
 catalogue/labeledMARCdetail.pl                     |   20 ++++++-------
 catalogue/moredetail.pl                            |   20 ++++++-------
 catalogue/search.pl                                |   20 ++++++-------
 catalogue/updateitem.pl                            |   20 ++++++-------
 cataloguing/addbiblio.pl                           |   20 ++++++-------
 cataloguing/addbooks.pl                            |   20 ++++++-------
 cataloguing/additem.pl                             |   20 ++++++-------
 cataloguing/linkitem.pl                            |   20 ++++++-------
 cataloguing/merge.pl                               |   20 ++++++-------
 cataloguing/moveitem.pl                            |   20 ++++++-------
 cataloguing/plugin_launcher.pl                     |   20 ++++++-------
 cataloguing/value_builder/barcode.pl               |   20 ++++++-------
 cataloguing/value_builder/barcode_manual.pl        |   20 ++++++-------
 cataloguing/value_builder/callnumber-KU.pl         |   20 ++++++-------
 cataloguing/value_builder/callnumber.pl            |   20 ++++++-------
 cataloguing/value_builder/dateaccessioned.pl       |   20 ++++++-------
 cataloguing/value_builder/macles.pl                |   20 ++++++-------
 cataloguing/value_builder/marc21_field_003.pl      |   20 ++++++-------
 cataloguing/value_builder/marc21_field_005.pl      |   20 ++++++-------
 cataloguing/value_builder/marc21_field_006.pl      |   20 ++++++-------
 cataloguing/value_builder/marc21_field_007.pl      |   20 ++++++-------
 cataloguing/value_builder/marc21_field_008.pl      |   20 ++++++-------
 .../value_builder/marc21_field_008_authorities.pl  |   20 ++++++-------
 cataloguing/value_builder/marc21_field_040c.pl     |   20 ++++++-------
 cataloguing/value_builder/marc21_field_040d.pl     |   20 ++++++-------
 cataloguing/value_builder/marc21_field_245h.pl     |   20 ++++++-------
 cataloguing/value_builder/marc21_leader.pl         |   20 ++++++-------
 .../value_builder/marc21_leader_authorities.pl     |   20 ++++++-------
 cataloguing/value_builder/marc21_leader_book.pl    |   20 ++++++-------
 .../value_builder/marc21_leader_computerfile.pl    |   20 ++++++-------
 cataloguing/value_builder/marc21_leader_video.pl   |   20 ++++++-------
 .../value_builder/marc21_linking_section.pl        |   20 ++++++-------
 cataloguing/value_builder/normarc_field_007.pl     |   20 ++++++-------
 cataloguing/value_builder/normarc_field_008.pl     |   20 ++++++-------
 cataloguing/value_builder/normarc_leader.pl        |   20 ++++++-------
 cataloguing/value_builder/stocknumber.pl           |   20 ++++++-------
 cataloguing/value_builder/stocknumberAV.pl         |   20 ++++++-------
 cataloguing/value_builder/stocknumberam123.pl      |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_010.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_100.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_105.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_106.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_110.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_115a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_115b.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_116.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_117.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_120.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_121a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_121b.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_122.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123d.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123e.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123f.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123g.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123i.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_123j.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124b.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124c.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124d.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124e.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124f.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_124g.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_125.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_125a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_125b.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_126.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_126a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_126b.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_127.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_128a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_128b.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_128c.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_130.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_135a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_140.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_141.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_210c.pl    |   20 ++++++-------
 .../value_builder/unimarc_field_210c_bis.pl        |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_225a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_4XX.pl     |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_686a.pl    |   20 ++++++-------
 cataloguing/value_builder/unimarc_field_700-4.pl   |   20 ++++++-------
 cataloguing/value_builder/unimarc_leader.pl        |   20 ++++++-------
 cataloguing/ysearch.pl                             |   20 ++++++-------
 cataloguing/z3950_search.pl                        |   20 ++++++-------
 changelanguage.pl                                  |   20 ++++++-------
 circ/add_message.pl                                |   20 ++++++-------
 circ/bookcount.pl                                  |   20 ++++++-------
 circ/branchoverdues.pl                             |   20 ++++++-------
 circ/branchtransfers.pl                            |   20 ++++++-------
 circ/circulation-home.pl                           |   20 ++++++-------
 circ/circulation.pl                                |   20 ++++++-------
 circ/del_message.pl                                |   20 ++++++-------
 circ/hold-transfer-slip.pl                         |   20 ++++++-------
 circ/overdue.pl                                    |   20 ++++++-------
 circ/pendingreserves.pl                            |   20 ++++++-------
 circ/reserveratios.pl                              |   20 ++++++-------
 circ/returns.pl                                    |   20 ++++++-------
 circ/selectbranchprinter.pl                        |   20 ++++++-------
 circ/stats.pl                                      |   20 ++++++-------
 circ/transfer-slip.pl                              |   20 ++++++-------
 circ/transferstoreceive.pl                         |   20 ++++++-------
 circ/view_holdsqueue.pl                            |   20 ++++++-------
 circ/waitingreserves.pl                            |   20 ++++++-------
 circ/ypattrodue-attr-search-authvalue.pl           |   20 ++++++-------
 circ/ysearch.pl                                    |   20 ++++++-------
 course_reserves/add_items.pl                       |   20 ++++++-------
 course_reserves/course-details.pl                  |   20 ++++++-------
 course_reserves/course-reserves.pl                 |   20 ++++++-------
 course_reserves/course.pl                          |   20 ++++++-------
 course_reserves/mod_course.pl                      |   20 ++++++-------
 debian/build-git-snapshot                          |   20 ++++++-------
 docs/CAS/CASProxy/examples/koha_webservice.pl      |   20 ++++++-------
 docs/CAS/CASProxy/examples/proxy_cas.pl            |   20 ++++++-------
 docs/CAS/CASProxy/examples/proxy_cas_callback.pl   |   20 ++++++-------
 docs/CAS/CASProxy/examples/proxy_cas_data.pl       |   20 ++++++-------
 edithelp.pl                                        |   20 ++++++-------
 etc/zebradb/etc/phrases-icu.xml                    |    4 +++
 etc/zebradb/etc/words-icu.xml                      |    4 +++
 fix-perl-path.PL                                   |   20 ++++++-------
 help.pl                                            |   20 ++++++-------
 install-CPAN.pl                                    |   20 ++++++-------
 install_misc/UpgradeBackup.pm                      |   20 ++++++-------
 install_misc/ubuntu-packages.sh                    |   20 ++++++-------
 installer/data/mysql/labels_upgrade.pl             |   20 ++++++-------
 installer/data/mysql/patroncards_upgrade.pl        |   20 ++++++-------
 installer/data/mysql/updatedatabase.pl             |   20 ++++++-------
 .../prog/en/modules/circ/circulation.tt            |    3 +-
 labels/label-create-csv.pl                         |   20 ++++++-------
 labels/label-create-pdf.pl                         |   20 ++++++-------
 labels/label-create-xml.pl                         |   20 ++++++-------
 labels/label-edit-batch.pl                         |   20 ++++++-------
 labels/label-edit-layout.pl                        |   20 ++++++-------
 labels/label-edit-profile.pl                       |   20 ++++++-------
 labels/label-edit-template.pl                      |   20 ++++++-------
 labels/label-home.pl                               |   20 ++++++-------
 labels/label-item-search.pl                        |   20 ++++++-------
 labels/label-manage.pl                             |   20 ++++++-------
 labels/label-print.pl                              |   20 ++++++-------
 labels/spinelabel-home.pl                          |   20 ++++++-------
 labels/spinelabel-print.pl                         |   20 ++++++-------
 members/boraccount.pl                              |   20 ++++++-------
 members/default_messageprefs.pl                    |   20 ++++++-------
 members/deletemem.pl                               |   20 ++++++-------
 members/files.pl                                   |   20 ++++++-------
 members/mancredit.pl                               |   20 ++++++-------
 members/maninvoice.pl                              |   20 ++++++-------
 members/member.pl                                  |   20 ++++++-------
 members/memberentry.pl                             |   20 ++++++-------
 members/members-home.pl                            |   20 ++++++-------
 members/members-update-do.pl                       |   20 ++++++-------
 members/members-update.pl                          |   20 ++++++-------
 members/moremember.pl                              |   20 ++++++-------
 members/notices.pl                                 |   20 ++++++-------
 members/patronimage.pl                             |   20 ++++++-------
 members/pay.pl                                     |   20 ++++++-------
 members/paycollect.pl                              |   20 ++++++-------
 members/printfeercpt.pl                            |   20 ++++++-------
 members/printinvoice.pl                            |   20 ++++++-------
 members/printslip.pl                               |   20 ++++++-------
 members/readingrec.pl                              |   20 ++++++-------
 members/routing-lists.pl                           |   20 ++++++-------
 members/setstatus.pl                               |   20 ++++++-------
 members/update-child.pl                            |   20 ++++++-------
 misc/admin/koha-preferences                        |   20 ++++++-------
 misc/batchupdateISBNs.pl                           |   20 ++++++-------
 misc/bin/connexion_import_daemon.pl                |   20 ++++++-------
 misc/bin/koha-index-daemon-ctl.sh                  |   20 ++++++-------
 misc/bin/koha-pazpar2-ctl.sh                       |   20 ++++++-------
 misc/bin/koha-zebra-ctl.sh                         |   20 ++++++-------
 misc/bin/set-selinux-labels.sh                     |   20 ++++++-------
 misc/cronjobs/MARC21_parse_test.pl                 |   20 ++++++-------
 misc/cronjobs/advance_notices.pl                   |   20 ++++++-------
 misc/cronjobs/batch_anonymise.pl                   |   20 ++++++-------
 misc/cronjobs/cart_to_shelf.pl                     |   20 ++++++-------
 misc/cronjobs/check-url-quick.pl                   |   20 ++++++-------
 misc/cronjobs/check-url.pl                         |   20 ++++++-------
 misc/cronjobs/cleanup_database.pl                  |   20 ++++++-------
 misc/cronjobs/cloud-kw.pl                          |   20 ++++++-------
 misc/cronjobs/create_koc_db.pl                     |   20 ++++++-------
 misc/cronjobs/delete_expired_opac_registrations.pl |   20 ++++++-------
 .../delete_unverified_opac_registrations.pl        |   20 ++++++-------
 misc/cronjobs/fines.pl                             |   20 ++++++-------
 misc/cronjobs/gather_print_notices.pl              |   20 ++++++-------
 misc/cronjobs/holds/auto_unsuspend_holds.pl        |   20 ++++++-------
 misc/cronjobs/holds/cancel_expired_holds.pl        |   20 ++++++-------
 misc/cronjobs/import_webservice_batch.pl           |   20 ++++++-------
 misc/cronjobs/j2a.pl                               |   20 ++++++-------
 misc/cronjobs/longoverdue.pl                       |   20 ++++++-------
 misc/cronjobs/overdue_notices.pl                   |   20 ++++++-------
 misc/cronjobs/process_message_queue.pl             |   20 ++++++-------
 misc/cronjobs/purge_suggestions.pl                 |   20 ++++++-------
 misc/cronjobs/runreport.pl                         |   20 ++++++-------
 misc/cronjobs/serialsUpdate.pl                     |   20 ++++++-------
 misc/cronjobs/staticfines.pl                       |   20 ++++++-------
 .../thirdparty/TalkingTech_itiva_inbound.pl        |   20 ++++++-------
 .../thirdparty/TalkingTech_itiva_outbound.pl       |   20 ++++++-------
 misc/cronjobs/update_totalissues.pl                |   20 ++++++-------
 misc/export_borrowers.pl                           |   22 +++++++-------
 misc/kohalib.pl                                    |   24 ++++++++--------
 misc/maintenance/MARC21_utf8_flag_fix.pl           |   20 ++++++-------
 .../maintenance/borrowers-force-messaging-defaults |   20 ++++++-------
 misc/maintenance/cmp_sysprefs.pl                   |   20 ++++++-------
 misc/maintenance/fix_accountlines_date.pl          |   20 ++++++-------
 .../fix_accountlines_rmdupfines_bug8253.pl         |   20 ++++++-------
 misc/maintenance/fix_mysql_constraints.pl          |   20 ++++++-------
 .../maintenance/make_zebra_dom_cfg_from_record_abs |   20 ++++++-------
 misc/maintenance/remove_items_from_biblioitems.pl  |   20 ++++++-------
 misc/maintenance/touch_all_biblios.pl              |   20 ++++++-------
 misc/maintenance/touch_all_items.pl                |   20 ++++++-------
 misc/migration_tools/build_oai_sets.pl             |   20 ++++++-------
 misc/migration_tools/checkNonIndexedBiblios.pl     |   20 ++++++-------
 misc/migration_tools/koha-svc.pl                   |   20 ++++++-------
 misc/migration_tools/remove_unused_authorities.pl  |   20 ++++++-------
 misc/migration_tools/switch_marc21_series_info.pl  |   20 ++++++-------
 misc/mod_zebraqueue.pl                             |   20 ++++++-------
 misc/translator/LangInstaller.pm                   |   20 ++++++-------
 misc/translator/translate                          |   20 ++++++-------
 offline_circ/enqueue_koc.pl                        |   20 ++++++-------
 offline_circ/list.pl                               |   20 ++++++-------
 offline_circ/process.pl                            |   20 ++++++-------
 offline_circ/process_koc.pl                        |   20 ++++++-------
 offline_circ/service.pl                            |   20 ++++++-------
 opac/errors/400.pl                                 |   20 ++++++-------
 opac/errors/401.pl                                 |   20 ++++++-------
 opac/errors/402.pl                                 |   20 ++++++-------
 opac/errors/403.pl                                 |   20 ++++++-------
 opac/errors/404.pl                                 |   20 ++++++-------
 opac/errors/500.pl                                 |   20 ++++++-------
 opac/ilsdi.pl                                      |   20 ++++++-------
 opac/maintenance.pl                                |   20 ++++++-------
 opac/oai.pl                                        |   20 ++++++-------
 opac/opac-ISBDdetail.pl                            |   20 ++++++-------
 opac/opac-account.pl                               |   20 ++++++-------
 opac/opac-addbybiblionumber.pl                     |   20 ++++++-------
 opac/opac-alert-subscribe.pl                       |   20 ++++++-------
 opac/opac-authorities-home.pl                      |   20 ++++++-------
 opac/opac-authoritiesdetail.pl                     |   20 ++++++-------
 opac/opac-basket.pl                                |   20 ++++++-------
 opac/opac-browser.pl                               |   20 ++++++-------
 opac/opac-changelanguage.pl                        |   20 ++++++-------
 opac/opac-course-details.pl                        |   20 ++++++-------
 opac/opac-course-reserves.pl                       |   20 ++++++-------
 opac/opac-detail.pl                                |   20 ++++++-------
 opac/opac-downloadcart.pl                          |   20 ++++++-------
 opac/opac-downloadshelf.pl                         |   20 ++++++-------
 opac/opac-export.pl                                |   20 ++++++-------
 opac/opac-ics.pl                                   |   20 ++++++-------
 opac/opac-image.pl                                 |   20 ++++++-------
 opac/opac-imageviewer.pl                           |   20 ++++++-------
 opac/opac-memberentry.pl                           |   20 ++++++-------
 opac/opac-messaging.pl                             |   20 ++++++-------
 opac/opac-modrequest-suspend.pl                    |   20 ++++++-------
 opac/opac-modrequest.pl                            |   20 ++++++-------
 opac/opac-mymessages.pl                            |   20 ++++++-------
 opac/opac-passwd.pl                                |   20 ++++++-------
 opac/opac-patron-image.pl                          |   20 ++++++-------
 opac/opac-privacy.pl                               |   20 ++++++-------
 opac/opac-ratings-ajax.pl                          |   20 ++++++-------
 opac/opac-ratings.pl                               |   20 ++++++-------
 opac/opac-readingrecord.pl                         |   20 ++++++-------
 opac/opac-registration-verify.pl                   |   20 ++++++-------
 opac/opac-renew.pl                                 |   20 ++++++-------
 opac/opac-reserve.pl                               |   27 +++++++++++-------
 opac/opac-review.pl                                |   20 ++++++-------
 opac/opac-search-history.pl                        |   20 ++++++-------
 opac/opac-search.pl                                |   20 ++++++-------
 opac/opac-sendbasket.pl                            |   20 ++++++-------
 opac/opac-sendshelf.pl                             |   20 ++++++-------
 opac/opac-serial-issues.pl                         |   20 ++++++-------
 opac/opac-shelves.pl                               |   20 ++++++-------
 opac/opac-showreviews.pl                           |   20 ++++++-------
 opac/opac-suggestions.pl                           |   20 ++++++-------
 opac/opac-tags.pl                                  |   20 ++++++-------
 opac/opac-tags_subject.pl                          |   20 ++++++-------
 opac/opac-topissues.pl                             |   20 ++++++-------
 opac/opac-user.pl                                  |   20 ++++++-------
 opac/sco/help.pl                                   |   20 ++++++-------
 opac/sco/printslip.pl                              |   20 ++++++-------
 opac/sco/sco-main.pl                               |   20 ++++++-------
 opac/sco/sco-patron-image.pl                       |   20 ++++++-------
 opac/svc/suggestion                                |   20 ++++++-------
 opac/tracklinks.pl                                 |   20 ++++++-------
 opac/unapi                                         |   20 ++++++-------
 patroncards/card-print.pl                          |   20 ++++++-------
 patroncards/create-pdf.pl                          |   20 ++++++-------
 patroncards/edit-batch.pl                          |   20 ++++++-------
 patroncards/edit-layout.pl                         |   20 ++++++-------
 patroncards/edit-profile.pl                        |   20 ++++++-------
 patroncards/edit-template.pl                       |   20 ++++++-------
 patroncards/home.pl                                |   20 ++++++-------
 patroncards/manage.pl                              |   20 ++++++-------
 patroncards/print.pl                               |   20 ++++++-------
 plugins/plugins-home.pl                            |   20 ++++++-------
 plugins/plugins-uninstall.pl                       |   20 ++++++-------
 plugins/plugins-upload.pl                          |   20 ++++++-------
 plugins/run.pl                                     |   20 ++++++-------
 reports/acquisitions_stats.pl                      |   20 ++++++-------
 reports/bor_issues_top.pl                          |   20 ++++++-------
 reports/borrowers_out.pl                           |   20 ++++++-------
 reports/borrowers_stats.pl                         |   20 ++++++-------
 reports/cat_issues_top.pl                          |   20 ++++++-------
 reports/catalogue_out.pl                           |   20 ++++++-------
 reports/catalogue_stats.pl                         |   20 ++++++-------
 reports/dictionary.pl                              |   20 ++++++-------
 reports/guided_reports.pl                          |   20 ++++++-------
 reports/issues_avg_stats.pl                        |   20 ++++++-------
 reports/issues_by_borrower_category.plugin         |   20 ++++++-------
 reports/issues_stats.pl                            |   20 ++++++-------
 reports/itemslost.pl                               |   20 ++++++-------
 reports/itemtypes.plugin                           |   20 ++++++-------
 reports/manager.pl                                 |   20 ++++++-------
 reports/reports-home.pl                            |   20 ++++++-------
 reports/reservereport.pl                           |   20 ++++++-------
 reports/serials_stats.pl                           |   20 ++++++-------
 reports/stats.screen.pl                            |   20 ++++++-------
 reserve/modrequest.pl                              |   20 ++++++-------
 reserve/modrequest_suspendall.pl                   |   20 ++++++-------
 reserve/placerequest.pl                            |   20 ++++++-------
 reserve/renewscript.pl                             |   20 ++++++-------
 reserve/request.pl                                 |   20 ++++++-------
 reviews/reviewswaiting.pl                          |   20 ++++++-------
 rewrite-config.PL                                  |   20 ++++++-------
 rotating_collections/addItems.pl                   |   20 ++++++-------
 rotating_collections/editCollections.pl            |   20 ++++++-------
 rotating_collections/rotatingCollections.pl        |   20 ++++++-------
 rotating_collections/transferCollection.pl         |   20 ++++++-------
 serials/acqui-search-result.pl                     |   20 ++++++-------
 serials/acqui-search.pl                            |   20 ++++++-------
 serials/checkexpiration.pl                         |   20 ++++++-------
 serials/claims.pl                                  |   20 ++++++-------
 serials/reorder_members.pl                         |   20 ++++++-------
 serials/routing-preview.pl                         |   20 ++++++-------
 serials/routing.pl                                 |   20 ++++++-------
 serials/serial-issues.pl                           |   20 ++++++-------
 serials/serials-collection.pl                      |   20 ++++++-------
 serials/serials-edit.pl                            |   20 ++++++-------
 serials/serials-home.pl                            |   20 ++++++-------
 serials/serials-recieve.pl                         |   20 ++++++-------
 serials/serials-search.pl                          |   20 ++++++-------
 serials/subscription-add.pl                        |   20 ++++++-------
 serials/subscription-bib-search.pl                 |   20 ++++++-------
 serials/subscription-detail.pl                     |   20 ++++++-------
 serials/subscription-renew.pl                      |   20 ++++++-------
 serials/viewalerts.pl                              |   20 ++++++-------
 services/itemrecorddisplay.pl                      |   20 ++++++-------
 suggestion/suggestion.pl                           |   20 ++++++-------
 svc/authentication                                 |   20 ++++++-------
 svc/bib                                            |   20 ++++++-------
 svc/bib_profile                                    |   20 ++++++-------
 svc/config/systempreferences                       |   20 ++++++-------
 svc/import_bib                                     |   20 ++++++-------
 svc/members/add_to_list                            |   20 ++++++-------
 svc/members/search                                 |   20 ++++++-------
 svc/new_bib                                        |   20 ++++++-------
 t/00-checkdatabase-version.t                       |   20 ++++++-------
 t/00-merge-conflict-markers.t                      |   20 ++++++-------
 t/00-valid-xml.t                                   |   20 ++++++-------
 t/Koha_MetadataRecord.t                            |   20 ++++++-------
 t/Koha_Util_MARC.t                                 |   20 ++++++-------
 t/Labels.t                                         |   20 ++++++-------
 t/Labels_split_ccn.t                               |   20 ++++++-------
 t/Labels_split_ddcn.t                              |   20 ++++++-------
 t/Labels_split_lccn.t                              |   20 ++++++-------
 t/RecordProcessor.t                                |   20 ++++++-------
 t/db_dependent/Koha_Authority.t                    |   20 ++++++-------
 t/db_dependent/Labels/t_Batch.t                    |   20 ++++++-------
 t/db_dependent/Labels/t_Layout.t                   |   20 ++++++-------
 t/db_dependent/Labels/t_Profile.t                  |   20 ++++++-------
 t/db_dependent/Labels/t_Template.t                 |   20 ++++++-------
 t/db_dependent/Record/Record.t                     |   20 ++++++-------
 .../RecordProcessor_EmbedSeeFromHeadings.t         |   20 ++++++-------
 t/db_dependent/Reports/Guided.t                    |   20 ++++++-------
 tags/list.pl                                       |   20 ++++++-------
 tags/review.pl                                     |   20 ++++++-------
 test/progressbar.pl                                |   20 ++++++-------
 test/progressbarsubmit.pl                          |   20 ++++++-------
 tools/background-job-progress.pl                   |   20 ++++++-------
 tools/batchMod.pl                                  |   20 ++++++-------
 tools/cleanborrowers.pl                            |   20 ++++++-------
 tools/copy-holidays.pl                             |   20 ++++++-------
 tools/csv-profiles.pl                              |   20 ++++++-------
 tools/export.pl                                    |   20 ++++++-------
 tools/holidays.pl                                  |   20 ++++++-------
 tools/import_borrowers.pl                          |   20 ++++++-------
 tools/inventory.pl                                 |   20 ++++++-------
 tools/letter.pl                                    |   20 ++++++-------
 tools/manage-marc-import.pl                        |   20 ++++++-------
 tools/modborrowers.pl                              |   20 ++++++-------
 tools/overduerules.pl                              |   20 ++++++-------
 tools/picture-upload.pl                            |   20 ++++++-------
 tools/quotes-upload.pl                             |   20 ++++++-------
 tools/quotes.pl                                    |   20 ++++++-------
 tools/quotes/quotes-upload_ajax.pl                 |   20 ++++++-------
 tools/quotes/quotes_ajax.pl                        |   20 ++++++-------
 tools/scheduler.pl                                 |   20 ++++++-------
 tools/stage-marc-import.pl                         |   20 ++++++-------
 tools/tools-home.pl                                |   20 ++++++-------
 tools/upload-cover-image.pl                        |   20 ++++++-------
 tools/upload-file-progress.pl                      |   20 ++++++-------
 tools/upload-file.pl                               |   20 ++++++-------
 tools/viewlog.pl                                   |   20 ++++++-------
 virtualshelves/addbybiblionumber.pl                |   20 ++++++-------
 virtualshelves/downloadshelf.pl                    |   20 ++++++-------
 virtualshelves/sendshelf.pl                        |   20 ++++++-------
 virtualshelves/shelves.pl                          |   20 ++++++-------
 xt/author/show-template-structure.pl               |   20 ++++++-------
 xt/find-misplaced-executables                      |   20 ++++++-------
 xt/find-nonutf8                                    |   20 ++++++-------
 xt/permissions.t                                   |   20 ++++++-------
 xt/verify-debian-docbook.t                         |   20 ++++++-------
 xt/yaml_valid.pl                                   |   20 ++++++-------
 xt/yaml_valid.t                                    |   20 ++++++-------
 636 files changed, 6358 insertions(+), 6336 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list