diff --git a/WebsitePanel.Installer/Sources/WebsitePanel.Installer.Core/Loader.cs b/WebsitePanel.Installer/Sources/WebsitePanel.Installer.Core/Loader.cs index 39fe1861..54ef5d79 100644 --- a/WebsitePanel.Installer/Sources/WebsitePanel.Installer.Core/Loader.cs +++ b/WebsitePanel.Installer/Sources/WebsitePanel.Installer.Core/Loader.cs @@ -80,7 +80,7 @@ namespace WebsitePanel.Installer.Core private WebClient fileLoader; - public BitlyLoader(string remoteFile) + internal BitlyLoader(string remoteFile) : base(remoteFile) { InitFileLoader(); @@ -175,7 +175,7 @@ namespace WebsitePanel.Installer.Core public event EventHandler> ProgressChanged; public event EventHandler OperationCompleted; - public Loader(string remoteFile) + internal Loader(string remoteFile) { this.remoteFile = remoteFile; } diff --git a/WebsitePanel/Database/install_db.sql b/WebsitePanel/Database/install_db.sql index 14fbbba5..b9a05217 100644 --- a/WebsitePanel/Database/install_db.sql +++ b/WebsitePanel/Database/install_db.sql @@ -35704,8 +35704,8 @@ RAISERROR('You are not allowed to access this package', 16, 1) DECLARE @Records TABLE ( RecordID int, - RecordType nvarchar(10) COLLATE DATABASE_DEFAULT, - RecordName nvarchar(50) COLLATE DATABASE_DEFAULT + RecordType nvarchar(10) COLLATE Latin1_General_CI_AS, + RecordName nvarchar(50) COLLATE Latin1_General_CI_AS ) -- select PACKAGES DNS records @@ -44137,7 +44137,7 @@ EXEC sp_xml_preparedocument @idoc OUTPUT, @xml -- Execute a SELECT statement that uses the OPENXML rowset provider. DELETE FROM ServiceProperties WHERE ServiceID = @ServiceID -AND PropertyName COLLATE DATABASE_DEFAULT IN +AND PropertyName COLLATE Latin1_General_CI_AS IN ( SELECT PropertyName FROM OPENXML(@idoc, '/properties/property', 1) diff --git a/WebsitePanel/Database/update_db.sql b/WebsitePanel/Database/update_db.sql index 92b0b599..a9963878 100644 --- a/WebsitePanel/Database/update_db.sql +++ b/WebsitePanel/Database/update_db.sql @@ -1244,8 +1244,8 @@ RAISERROR('You are not allowed to access this package', 16, 1) DECLARE @Records TABLE ( RecordID int, - RecordType nvarchar(10) COLLATE DATABASE_DEFAULT, - RecordName nvarchar(50) COLLATE DATABASE_DEFAULT + RecordType nvarchar(10) COLLATE Latin1_General_CI_AS, + RecordName nvarchar(50) COLLATE Latin1_General_CI_AS ) -- select PACKAGES DNS records