diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/dialogs/rollBack.aspx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/dialogs/rollBack.aspx.cs
index b28e40163b..f6390a9d0b 100644
--- a/src/Umbraco.Web/umbraco.presentation/umbraco/dialogs/rollBack.aspx.cs
+++ b/src/Umbraco.Web/umbraco.presentation/umbraco/dialogs/rollBack.aspx.cs
@@ -34,8 +34,8 @@ namespace umbraco.presentation.dialogs
diffPanel.Visible = true;
Document rollback = new Document(currentDoc.Id, new Guid(allVersions.SelectedValue));
- propertiesCompare.Text = "| " + ui.Text("general", "name") + ": | " + rollback.Text + " |
";
- propertiesCompare.Text += "| " + ui.Text("content", "createDate") + ": | " + rollback.VersionDate.ToLongDateString() + " " + rollback.VersionDate.ToLongTimeString() + " " + ui.Text("general", "by") + ": " + rollback.Writer.Name + " |
";
+ propertiesCompare.Text = "| " + ui.Text("general", "name") + ": | " + rollback.Text + " |
";
+ propertiesCompare.Text += "| " + ui.Text("content", "createDate") + ": | " + rollback.VersionDate.ToLongDateString() + " " + rollback.VersionDate.ToLongTimeString() + " " + ui.Text("general", "by") + ": " + rollback.Writer.Name + " |
";
if (rbl_mode.SelectedValue == "diff")
lt_notice.Text = ui.Text("rollback", "diffHelp");
@@ -66,14 +66,14 @@ namespace umbraco.presentation.dialogs
string cThevalue = library.StripHtml(cP.Value.ToString());
- propertiesCompare.Text += "| " + p.PropertyType.Name + ": | " + library.ReplaceLineBreaks(cms.businesslogic.utilities.Diff.Diff2Html(cThevalue, thevalue)) + " |
";
+ propertiesCompare.Text += "| " + p.PropertyType.Name + ": | " + library.ReplaceLineBreaks(cms.businesslogic.utilities.Diff.Diff2Html(cThevalue, thevalue)) + " |
";
}
else
{
//If no current version of the value... display with no diff.
- propertiesCompare.Text += "| " + p.PropertyType.Name + ": | " + thevalue + " |
";
+ propertiesCompare.Text += "| " + p.PropertyType.Name + ": | " + thevalue + " |
";
}
@@ -81,7 +81,7 @@ namespace umbraco.presentation.dialogs
else
{
//If display mode is html
- propertiesCompare.Text += "| " + p.PropertyType.Name + ": | " + thevalue + " |
";
+ propertiesCompare.Text += "| " + p.PropertyType.Name + ": | " + thevalue + " |
";
}
//previewVersionContent.Controls.Add(new LiteralControl("" + p.PropertyType.Name + "
"));