Skip to content

Commit

Permalink
Fixed culture problems with converting strings while adding new products
Browse files Browse the repository at this point in the history
  • Loading branch information
zihniartar committed Mar 9, 2015
1 parent 1d92d19 commit 72e6060
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1146,7 +1146,7 @@ protected void MapModelToProduct(ProductModel model, Product product, FormCollec

foreach (var tab in model.LoadedTabs)
{
switch (tab.ToLower())
switch (tab.ToLowerInvariant())
{
case "info":
UpdateProductGeneralInfo(product, model);
Expand Down

0 comments on commit 72e6060

Please sign in to comment.