Bugzilla – Attachment 28283 Details for
Bug 12209
Fix currency symbol for NOK
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 12209 - Fix currency symbol for NOK
PASSED-QA-Bug-12209---Fix-currency-symbol-for-NOK.patch (text/plain), 1.75 KB, created by
Katrin Fischer
on 2014-05-15 21:20:25 UTC
(
hide
)
Description:
[PASSED QA] Bug 12209 - Fix currency symbol for NOK
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2014-05-15 21:20:25 UTC
Size:
1.75 KB
patch
obsolete
>From 79459b97c4d2cdcee98e20f149c0ec141ddb0f2d Mon Sep 17 00:00:00 2001 >From: Magnus Enger <magnus@enger.priv.no> >Date: Thu, 15 May 2014 08:38:47 +0200 >Subject: [PATCH] [PASSED QA] Bug 12209 - Fix currency symbol for NOK > >Dunno why, but the currency symbol for NOK was given as "$", when >it should be "kr". > >To test: >- Empty the "currency" table in the DB: > DELETE FROM currency; >- Load in the file changed by this patch: > sudo koha-mysql <instance> < installer/data/mysql/nb-NO/2-Valgfritt/parameters.sql > (if you are testing on a (gitified) package install) >- Check that "kr" is displayed on /cgi-bin/koha/admin/currency.pl >- Add a budget and a fund, and check that "kr" is displayed in the list > of funds (currency symbols seem to be missing from the list of budgets) > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >file loads ok, kr currency active, no errors > >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >Works as described, no problems found. >--- > installer/data/mysql/nb-NO/2-Valgfritt/parameters.sql | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/nb-NO/2-Valgfritt/parameters.sql b/installer/data/mysql/nb-NO/2-Valgfritt/parameters.sql >index 6343e54..4d3c3be 100644 >--- a/installer/data/mysql/nb-NO/2-Valgfritt/parameters.sql >+++ b/installer/data/mysql/nb-NO/2-Valgfritt/parameters.sql >@@ -19,8 +19,8 @@ > -- with Koha; if not, write to the Free Software Foundation, Inc., > -- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. > >-INSERT INTO `currency` (currency, rate, symbol, active) VALUES >+INSERT INTO currency (currency, rate, symbol, active) VALUES > ('USD', 5.6157, '$', 0), >-('NOK', 1.0, '$', 1), >+('NOK', 1.0, 'kr', 1), > ('GBP', 8.9680, '£', 0), > ('EUR', 7.8940, 'â¬', 0); >-- >1.8.3.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12209
:
28271
|
28277
| 28283