@@ -, +, @@ may not be scans --- installer/data/mysql/atomicupdate/bug_27946.pl | 2 +- installer/data/mysql/mandatory/account_debit_types.sql | 2 +- koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_27946.pl +++ a/installer/data/mysql/atomicupdate/bug_27946.pl @@ -27,7 +27,7 @@ return { $dbh->do( q{ INSERT IGNORE INTO account_debit_types ( code, description, can_be_invoiced, can_be_sold, default_amount, is_system ) - VALUES ('ARTICLE_REQUEST', 'Article scan request fee', 0, 0, NULL, 1); + VALUES ('ARTICLE_REQUEST', 'Article request fee', 0, 0, NULL, 1); } ); }, --- a/installer/data/mysql/mandatory/account_debit_types.sql +++ a/installer/data/mysql/mandatory/account_debit_types.sql @@ -14,4 +14,4 @@ INSERT INTO account_debit_types ( code, description, can_be_invoiced, can_be_sol ('RESERVE', 'Hold fee', 0, 0, NULL, 1), ('RESERVE_EXPIRED', 'Hold waiting too long', 0, 0, NULL, 1), ('VOID', 'Credit has been voided', 0, 0, NULL, 1), -('ARTICLE_REQUEST', 'Article scan request fee', 0, 0, NULL, 1); +('ARTICLE_REQUEST', 'Article request fee', 0, 0, NULL, 1); --- a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc @@ -13,7 +13,7 @@ [%- SWITCH debit_type.code -%] [%- CASE 'ACCOUNT' -%]Account creation fee [%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee - [%- CASE 'ARTICLE_REQUEST' -%]Article scan request fee + [%- CASE 'ARTICLE_REQUEST' -%]Article request fee [%- CASE 'LOST' -%]Lost item [%- CASE 'MANUAL' -%]Manual fee [%- CASE 'NEW_CARD' -%]New card --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc @@ -13,7 +13,7 @@ [%- SWITCH debit_type_code -%] [%- CASE 'ACCOUNT' -%]Account creation fee [%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee - [%- CASE 'ARTICLE_REQUEST' -%]Article scan request fee + [%- CASE 'ARTICLE_REQUEST' -%]Article request fee [%- CASE 'LOST' -%]Lost item [%- CASE 'MANUAL' -%]Manual fee [%- CASE 'NEW_CARD' -%]New card --