Skip to content

Commit

Permalink
remove wrong time information from footer
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaKaRee committed May 5, 2015
1 parent c89fd55 commit 0174a33
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions Concordion/Internal/Listener/PageFooterRenderer.cs
Expand Up @@ -63,7 +63,7 @@ private void AddFooterToDocument(Element rootElement, Resource resource, long ti

Element footer = new Element("div");
footer.AddStyleClass("footer");
footer.AppendText("Results generated by ");
footer.AppendText("Powered by ");

Element link = new Element("a");
link.AddAttribute("href", CONCORDION_WEBSITE_URL);
Expand All @@ -75,12 +75,6 @@ private void AddFooterToDocument(Element rootElement, Resource resource, long ti
img.AddAttribute("border", "0");
link.AppendChild(img);

Element dateDiv = new Element("div");
dateDiv.AddStyleClass("testTime");
dateDiv.AppendText("in " + (timeTaken + 1) + " ms ");
dateDiv.AppendText(DateTime.Now.ToString());
footer.AppendChild(dateDiv);

body.AppendChild(footer);
}
}
Expand Down

0 comments on commit 0174a33

Please sign in to comment.