From e3c9f1d3ce766d6fdb9d6f3aa295b90a86cf335d Mon Sep 17 00:00:00 2001 From: Mahmoud Nouraei Date: Sat, 14 Nov 2020 11:36:57 +0330 Subject: [PATCH] fix resourceManager-bundle.rtl --- DNN Platform/Modules/ResourceManager/View.ascx.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/DNN Platform/Modules/ResourceManager/View.ascx.cs b/DNN Platform/Modules/ResourceManager/View.ascx.cs index a0ef5aa7f32..74eacb91f26 100644 --- a/DNN Platform/Modules/ResourceManager/View.ascx.cs +++ b/DNN Platform/Modules/ResourceManager/View.ascx.cs @@ -33,16 +33,17 @@ public partial class View : PortalModuleBase /// public View() { - //START Persian-DnnSoftware + // START Persian-DnnSoftware if (System.Globalization.CultureInfo.CurrentUICulture.TextInfo.IsRightToLeft) { - this.bundleJsPath = Dnn.Modules.ResourceManager.Components.Constants.ModulePath + "Scripts/resourceManager-bundle.rtl.js"; + this.bundleJsPath = Constants.ModulePath + "Scripts/resourceManager-bundle.rtl.js"; } else { this.bundleJsPath = Constants.ModulePath + "Scripts/resourceManager-bundle.js"; } - //END Persian-DnnSoftware + + // END Persian-DnnSoftware } ///