Skip to content

Commit

Permalink
Fix language ofr money format
Browse files Browse the repository at this point in the history
  • Loading branch information
leedavi committed Oct 12, 2021
1 parent fd7a979 commit 73ae0d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Components/Product/ProductFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ public int ProductSave(HttpContext context, bool newrecord = false)
var optionXml = Utils.UnCode(ajaxInfo.GetXmlProperty("genxml/hidden/xmlupdateoptiondata"));
var optionvalueXml = Utils.UnCode(ajaxInfo.GetXmlProperty("genxml/hidden/xmlupdateoptionvaluesdata"));

prdData.UpdateModels(modelXml, UiLang);
prdData.UpdateOptions(optionXml, UiLang);
prdData.UpdateOptionValues(optionvalueXml, UiLang);
prdData.UpdateModels(modelXml, EditLangCurrent);
prdData.UpdateOptions(optionXml, EditLangCurrent);
prdData.UpdateOptionValues(optionvalueXml, EditLangCurrent);
prdData.UpdateImages(ajaxInfo);
prdData.UpdateDocs(ajaxInfo);

Expand Down
2 changes: 1 addition & 1 deletion DNNpackager.dnnpack
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<root>
<version>4.1.6</version>
<version>4.1.7</version>
<websitedestrelpath>\DesktopModules\NBright\NBrightBuy</websitedestrelpath>
<websitedestbinrelpath>\bin</websitedestbinrelpath>
<!-- Include only files that match the regular expression -->
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.1.6.0")]
[assembly: AssemblyFileVersion("4.1.6.0")]
[assembly: AssemblyVersion("4.1.7.0")]
[assembly: AssemblyFileVersion("4.1.7.0")]

0 comments on commit 73ae0d3

Please sign in to comment.