From 8c76f48c2569bc74c7569a27cf37f0e3a93cb161 Mon Sep 17 00:00:00 2001 From: Indranil Das Gupta Date: Thu, 28 May 2015 06:09:44 +0530 Subject: [PATCH] Bug 14284 - Fixes typo 'native_descrition' Fixes the following typo (originally line 102 in C4/Languages.pm): 'native_descrition'=>$language_set->{language_native_description} } to read: 'native_description'=>$language_set->{language_native_description} } Test plan ========= 1/ in your git installdir do a `grep -R native native_descrition`. it should return only one single reference to this line in C4/Languages.pm 2/ open the file C4/Languages.pm, go to line #102 to confirm it. close the file 3/ apply patch 4/ re-run `grep -R native native_descrition`, this time nothing should be returned. --- C4/Languages.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Languages.pm b/C4/Languages.pm index be907ee..be4fc51 100644 --- a/C4/Languages.pm +++ b/C4/Languages.pm @@ -99,7 +99,7 @@ sub getFrameworkLanguages { push @languages, { 'language_code'=>$dirname, 'language_description'=>$language_set->{language_description}, - 'native_descrition'=>$language_set->{language_native_description} } + 'native_description'=>$language_set->{language_native_description} } } } } -- 1.9.1