diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-03-16 19:32:53 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-03-16 19:32:53 +0000 |
commit | 98fdd4e8924c1e091883c627e582dc269b4d3b1d (patch) | |
tree | 4f83c6512b8fd9f27f6301ec33cf2503fa3b3068 /plugins/HistoryStats/src | |
parent | 74d542b903ac53443700394cc3207e1d2fb01f4a (diff) |
HistoryStats: Fixed HTML validation
git-svn-id: http://svn.miranda-ng.org/main/trunk@8639 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryStats/src')
-rw-r--r-- | plugins/HistoryStats/src/statistic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryStats/src/statistic.cpp b/plugins/HistoryStats/src/statistic.cpp index cbc872fe6d..3a202f3f09 100644 --- a/plugins/HistoryStats/src/statistic.cpp +++ b/plugins/HistoryStats/src/statistic.cpp @@ -1005,7 +1005,7 @@ bool Statistic::stepWriteHTML() additionalCSSSelectors.clear();
tos << _T("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">") << ext::endl
- << _T("<html>") << ext::endl
+ << _T("<html xmlns=\"http://www.w3.org/1999/xhtml\">") << ext::endl
<< _T("<head>") << ext::endl
<< _T("<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />") << ext::endl
<< _T("<meta name=\"generator\" content=\"HistoryStats " << utils::versionToDotted(m_Settings.m_VersionCurrent) << "\" />") << ext::endl
|