Quellcode durchsuchen

Changed weblinks from prs-software.com.au to prsdigital.com.au

Frank van den Bos vor 2 Jahren
Ursprung
Commit
b019d016c1

+ 2 - 2
InABox.Database/DbFactory.cs

@@ -148,7 +148,7 @@ namespace InABox.Database
 
         private static void LogRenew(string message)
         {
-            LogImportant($"{message} Please renew your license before then, or your database will go into read-only mode; it will be locked for saving anything until you renew your license. For help with renewing your license, please see the documentation at https://prs-software.com.au/wiki/index.php/License_Renewal.");
+            LogImportant($"{message} Please renew your license before then, or your database will go into read-only mode; it will be locked for saving anything until you renew your license. For help with renewing your license, please see the documentation at https://prsdigital.com.au/wiki/index.php/License_Renewal.");
         }
         private static void LogLicenseExpiry(DateTime expiry)
         {
@@ -182,7 +182,7 @@ namespace InABox.Database
 
         private static void BeginReadOnly()
         {
-            LogImportant("Your database is now in read-only mode, since your license is invalid; you will be unable to save any records to the database until you renew your license. For help with renewing your license, please see the documentation at https://prs-software.com.au/wiki/index.php/License_Renewal.");
+            LogImportant("Your database is now in read-only mode, since your license is invalid; you will be unable to save any records to the database until you renew your license. For help with renewing your license, please see the documentation at https://prsdigital.com.au/wiki/index.php/License_Renewal.");
             _readOnly = true;
         }
         private static void EndReadOnly()

+ 1 - 1
inabox.wpf/DynamicGrid/DynamicEditorForm.xaml.cs

@@ -111,7 +111,7 @@ namespace InABox.DynamicGrid
         /// </summary>
         private void HelpCommandAction(object param)
         {
-            Process.Start("https://prs-software.com.au/wiki/index.php/" + Slug);
+            Process.Start("https://prsdigital.com.au/wiki/index.php/" + Slug);
         }
     }
 

+ 1 - 1
inabox.wpf/DynamicGrid/DynamicExportForm.xaml.cs

@@ -130,7 +130,7 @@ namespace InABox.DynamicGrid
 
         private void ShowHelp_Click(object sender, RoutedEventArgs e)
         {
-            Process.Start(new ProcessStartInfo("https://prs-software.com.au/wiki/index.php/Export_Data") { UseShellExecute = true });
+            Process.Start(new ProcessStartInfo("https://prsdigital.com.au/wiki/index.php/Export_Data") { UseShellExecute = true });
         }
 
         private IProperty? EntityCode(Type entityType)

+ 2 - 2
inabox.wpf/DynamicGrid/DynamicGrid.cs

@@ -2476,7 +2476,7 @@ namespace InABox.DynamicGrid
                 item,
                 (f, i) =>
                 {
-                    Process.Start(new ProcessStartInfo("https://prs-software.com.au/wiki/index.php/" + typeof(T).Name.SplitCamelCase().Replace(" ", "_"))
+                    Process.Start(new ProcessStartInfo("https://prsdigital.com.au/wiki/index.php/" + typeof(T).Name.SplitCamelCase().Replace(" ", "_"))
                     { UseShellExecute = true });
                 }
             );
@@ -2837,7 +2837,7 @@ namespace InABox.DynamicGrid
 
         protected virtual void ShowHelp(string slug)
         {
-            Process.Start(new ProcessStartInfo("https://prs-software.com.au/wiki/index.php/" + slug) { UseShellExecute = true });
+            Process.Start(new ProcessStartInfo("https://prsdigital.com.au/wiki/index.php/" + slug) { UseShellExecute = true });
         }
 
         protected void ReloadForms<TTargetType, TTargetForm, TSourceForm>(IDynamicEditorForm editor, TTargetType item,