diff --git a/src/Umbraco.Web/HealthCheck/Checks/DataIntegrity/XmlDataIntegrityHealthCheck.cs b/src/Umbraco.Web/HealthCheck/Checks/DataIntegrity/XmlDataIntegrityHealthCheck.cs index 8b94271e29..6b116776c2 100644 --- a/src/Umbraco.Web/HealthCheck/Checks/DataIntegrity/XmlDataIntegrityHealthCheck.cs +++ b/src/Umbraco.Web/HealthCheck/Checks/DataIntegrity/XmlDataIntegrityHealthCheck.cs @@ -181,7 +181,10 @@ namespace Umbraco.Web.HealthCheck.Checks.DataIntegrity if (totalXml != total || totalNonGuidXml > 0) { //if the counts don't match - actions.Add(new HealthCheckAction(CheckContentXmlTableAction, Id)); + actions.Add(new HealthCheckAction(CheckContentXmlTableAction, Id) + { + Name = _textService.Localize("healthcheck/rectifyButton") + }); hasError = true; } @@ -195,4 +198,4 @@ namespace Umbraco.Web.HealthCheck.Checks.DataIntegrity }; } } -} \ No newline at end of file +}