diff options
Diffstat (limited to 'plugins/HistoryStats/src/column_timeline.cpp')
-rw-r--r-- | plugins/HistoryStats/src/column_timeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryStats/src/column_timeline.cpp b/plugins/HistoryStats/src/column_timeline.cpp index ad59733b61..e3b6596c06 100644 --- a/plugins/HistoryStats/src/column_timeline.cpp +++ b/plugins/HistoryStats/src/column_timeline.cpp @@ -311,7 +311,7 @@ void ColTimeline::outputRenderRowInOut(ext::ostream& tos, const Contact& contact if (getStatistic()->newFilePNG(canvas, strFinalFile))
{
- tos << _T("<img src=\"") << strFinalFile << _T("\"/>");
+ tos << _T("<img src=\"") << strFinalFile << _T("\" alt=\"\" />");
}
tos << _T("</td>") << ext::endl;
@@ -446,7 +446,7 @@ void ColTimeline::outputRenderRowRatio(ext::ostream& tos, const Contact& contact if (getStatistic()->newFilePNG(canvas, strFinalFile))
{
- tos << _T("<img src=\"") << strFinalFile << _T("\"/>");
+ tos << _T("<img src=\"") << strFinalFile << _T("\" alt=\"\" />");
}
tos << _T("</td>") << ext::endl;
|