From 556ac68c08b668e796c186d100f0749ae949ba93 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 25 Jul 2017 14:37:55 -0300 Subject: [PATCH] Bug 18931: (followup) Tidy text Some minor style and idiomatic issues. Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 36 +++++++++++++----------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index 134a53f..9a4e917 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -140,37 +140,39 @@ [% IF has_ai_issues %]

Data problems

- The following tables have problems with their auto_increment values which may lead to data lost. You should not ignore this warning. - The problem is that innodb does not keep auto_increment across SQL server restarts (it is only set in memory). + Some of your tables have problems with their auto_increment values which may lead to data loss. You should not ignore this warning. + The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.

See the related wiki page to know how to avoid this problem.

+ +

Problems found

[% IF ai_patrons %] -

Patrons

- The following ids exist in both the borrowers and deletedborrowers table: - [% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %] +

Patrons

+

The following ids exist in both borrowers and deletedborrowers tables: + [% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %]

[% END %] [% IF ai_biblios %] -

Biblios

- The following ids exist in both the biblio and deletedbiblio table: - [% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %] +

Biblios

+

The following ids exist in both biblio and deletedbiblio tables: + [% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %]

[% END %] [% IF ai_items %] -

Items

- The following ids exist in both the items and deleteditems table: - [% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %] +

Items

+

The following ids exist in both items and deleteditems tables: + [% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %]

Checkouts - The following ids exist in both the issues and old_issues table: - [% FOR c IN ai_checkouts %][% c.issue_id %][% UNLESS loop.last %], [% END %][% END %] +

Checkouts

+

The following ids exist in both issues and old_issues tables: + [% FOR c IN ai_checkouts %][% c.issue_id %][% UNLESS loop.last %], [% END %][% END %]

[% END %] [% IF ai_holds %] -

Holds

- The following ids exist in both the holds and old_reserves table: - [% FOR h IN ai_holds %][% h.issue_id %][% UNLESS loop.last %], [% END %][% END %] +

Holds

+

The following ids exist in both holds and old_reserves table: + [% FOR h IN ai_holds %][% h.issue_id %][% UNLESS loop.last %], [% END %][% END %]

[% END %] [% END %] -- 2.7.4