Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- do not use non-UTF encoding fallback when nothing is configured #16

Merged
merged 1 commit into from
May 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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