From 6a5c2d51819c193580a2bc42856215a9b7d3b9f8 Mon Sep 17 00:00:00 2001 From: Zeno Tajoli Date: Fri, 14 Mar 2014 11:38:07 +0100 Subject: [PATCH] Bug 11939: set active currency when using English sample data This patch offers a better default for currencies, with USA dollar as default active currency. To test the patch: 1)Install master without the patch, during web installation select 'parameters.sql' file 2)Finish install and go to Administration -Currencies & Exchange rates 3)No active currency 4)Install master with this patch, during web installation select 'parameters.sql' file 5)Finish install and go to Administration -Currencies & Exchange rates 6)Now USA dollar is the active currency NOTE: This does solve the problem of everything being NULL for active, and lacking an active value. It also corrects the description of the optional item to check related to currencies. Signed-off-by: Mark Tompsett Signed-off-by: Katrin Fischer Works as described, passes all tests and QA script. Signed-off-by: Galen Charlton --- installer/data/mysql/en/optional/parameters.sql | 11 +++++------ installer/data/mysql/en/optional/parameters.txt | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/installer/data/mysql/en/optional/parameters.sql b/installer/data/mysql/en/optional/parameters.sql index 84a176b60a..16e86420a3 100644 --- a/installer/data/mysql/en/optional/parameters.sql +++ b/installer/data/mysql/en/optional/parameters.sql @@ -1,6 +1,5 @@ -INSERT INTO `currency` (currency, rate, symbol) VALUES -('USD', 1.0, '$'), -('GBP', 1.9929, '£'), -('CAD', 1.02207, '$'), -('EUR', .874003, '€'); - +INSERT INTO `currency` (currency, rate, symbol, active) VALUES +('USD', 1.0, '$', '1'), +('GBP', 1.9929, '£', '0'), +('CAD', 1.02207, '$', '0'), +('EUR', .874003, '€', '0'); diff --git a/installer/data/mysql/en/optional/parameters.txt b/installer/data/mysql/en/optional/parameters.txt index a104562321..a778b1f20c 100644 --- a/installer/data/mysql/en/optional/parameters.txt +++ b/installer/data/mysql/en/optional/parameters.txt @@ -1 +1 @@ -Some basic settings including USD currency, and a sampling of Z39.50 servers. +Some basic currencies with USA dollar as default for ACQ module -- 2.39.5