Skip to content

Commit

Permalink
Merge pull request #16 from jsuchome/Code-11-SP3
Browse files Browse the repository at this point in the history
- do not use non-UTF encoding fallback when nothing is configured
  • Loading branch information
jsuchome committed May 15, 2013
2 parents 68a5068 + d5e3cd6 commit 542dcce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.17.53
2.17.54
5 changes: 4 additions & 1 deletion language/src/modules/Language.ycp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,10 @@ global define void ReadSysconfigValues () {
if (!Stage::initial () || Mode::live_installation ())
{
string val = toupper (Misc::SysconfigRead (.sysconfig.language.RC_LANG, ""));
use_utf8 = search (val, ".UTF-8") != nil;
if (val != "")
{
use_utf8 = search (val, ".UTF-8") != nil;
}
}
else
{
Expand Down
7 changes: 7 additions & 0 deletions package/yast2-country.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Wed May 15 08:53:25 CEST 2013 - jsuchome@suse.cz

- do not use non-UTF encoding fallback when nothing is configured
(bnc#815265)
- 2.17.54

-------------------------------------------------------------------
Tue Feb 26 10:07:15 CET 2013 - jsuchome@suse.cz

Expand Down

0 comments on commit 542dcce

Please sign in to comment.