Skip to content

Commit

Permalink
Fixed hardcoded language in SQL command
Browse files Browse the repository at this point in the history
  • Loading branch information
Physikbuddha committed Dec 3, 2015
1 parent d074018 commit a115bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WSUSOnlineDescriptions/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private async void queryKBCommand_CommandExecuted(object sender, EventArgs e)
"JOIN tbUpdate u ON p.UpdateID = u.UpdateID " +
"JOIN tbRevision r ON u.LocalUpdateID = r.LocalUpdateID " +
"JOIN tbKBArticleForRevision kb ON r.RevisionID = kb.RevisionID " +
"WHERE p.ShortLanguage = 'de' AND u.IsHidden = 0 AND r.State = 3 AND r.IsLatestRevision = 1 " +
"WHERE u.IsHidden = 0 AND r.State = 3 AND r.IsLatestRevision = 1 " +
"ORDER BY kb.KBArticleID",
con))
{
Expand Down

0 comments on commit a115bb9

Please sign in to comment.