Fixed and closed #519 : changed all occurrences of ToLower() into ToLowerInvariant().
This commit is contained in:
parent
072ee52d8f
commit
5f05cecc20
8 changed files with 15 additions and 15 deletions
|
@ -56,7 +56,7 @@ namespace ScrewTurn.Wiki {
|
|||
|
||||
string size = Request["Size"];
|
||||
if(string.IsNullOrEmpty(size)) size = "small";
|
||||
size = size.ToLower();
|
||||
size = size.ToLowerInvariant();
|
||||
|
||||
// Verify permissions
|
||||
bool canDownload = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue