From 50a5bde86a89730922cfa09b7bea6b3f698f361c Mon Sep 17 00:00:00 2001 From: Lari Taskula Date: Sat, 16 Mar 2019 00:01:37 +0000 Subject: [PATCH] Bug 22527: Fix link to wrong database manual in web installer To reproduce: 1. Use MySQL or MariaDB for your Koha installation 2. Create an empty database and point $KOHA_CONF to this database name. 3. Grant SELECT privilege to your database user, e.g. grant select on koha3.* to 'koha'@'%' identified by 'koha'; 4. Go to step 2 of web installer where it checks database connection 5. Observe the following message User koha doesn't have enough privilege on database koha. Ask for or make a change in the user's privileges. User koha must have USAGE, INSERT, UPDATE, DELETE, DROP and CREATE privileges on database koha2. Need help? See manual for PostgreSQL 6. Note "See manual for PostgreSQL" is wrong. Should be "See manual for MySQL". 7. Apply patch 8. Refresh page and observe it now displays correct link Sponsored-by: Hypernova Oy Signed-off-by: Liz Rea --- koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt index 30a9209abb..0b0360edd8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt @@ -33,7 +33,7 @@

User [% user | $HtmlTags tag=>'code' %] doesn't have enough privilege on database [% dbname | $HtmlTags tag=>'code' %].

Ask for or make a change in the user's privileges. User [% user | $HtmlTags tag=>'code' %] must have USAGE, INSERT, UPDATE, DELETE, DROP and CREATE privileges on database [% dbname | $HtmlTags tag=>'code' %].

-

Need help? See manual for [% IF ( mysql ) %] +

Need help? See manual for [% IF ( dbms == 'mysql' ) %] MySQL [% ELSE %] PostgreSQL -- 2.11.0