Skip to content

Commit 73ae0d3

Browse files
committed
Fix language ofr money format
1 parent fd7a979 commit 73ae0d3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Components/Product/ProductFunctions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,9 @@ public int ProductSave(HttpContext context, bool newrecord = false)
310310
var optionXml = Utils.UnCode(ajaxInfo.GetXmlProperty("genxml/hidden/xmlupdateoptiondata"));
311311
var optionvalueXml = Utils.UnCode(ajaxInfo.GetXmlProperty("genxml/hidden/xmlupdateoptionvaluesdata"));
312312

313-
prdData.UpdateModels(modelXml, UiLang);
314-
prdData.UpdateOptions(optionXml, UiLang);
315-
prdData.UpdateOptionValues(optionvalueXml, UiLang);
313+
prdData.UpdateModels(modelXml, EditLangCurrent);
314+
prdData.UpdateOptions(optionXml, EditLangCurrent);
315+
prdData.UpdateOptionValues(optionvalueXml, EditLangCurrent);
316316
prdData.UpdateImages(ajaxInfo);
317317
prdData.UpdateDocs(ajaxInfo);
318318

DNNpackager.dnnpack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<root>
2-
<version>4.1.6</version>
2+
<version>4.1.7</version>
33
<websitedestrelpath>\DesktopModules\NBright\NBrightBuy</websitedestrelpath>
44
<websitedestbinrelpath>\bin</websitedestbinrelpath>
55
<!-- Include only files that match the regular expression -->

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("4.1.6.0")]
36-
[assembly: AssemblyFileVersion("4.1.6.0")]
35+
[assembly: AssemblyVersion("4.1.7.0")]
36+
[assembly: AssemblyFileVersion("4.1.7.0")]

0 commit comments

Comments
 (0)