diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index a1c2b63b..aa6c0ea9 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -39,7 +39,7 @@ QString resizeHTMLPixmap(QPixmap &pixmap, int width, int height) {
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
buffer.open(QIODevice::WriteOnly);
pixmap.scaled(width, height, Qt::KeepAspectRatio, Qt::SmoothTransformation).save(&buffer, "PNG");
- return QString("");
+ return QString("
");
}
QString formatTime(float time)
@@ -624,44 +624,46 @@ QString Statistics::getUserInfo () {
return "";
QString address = p_profile->user->address();
- address.replace("\n", "
");
+ address.replace("\n", "
");
QString userinfo = "";
if (!p_profile->user->firstName().isEmpty()) {
- userinfo = tr("Name: %1, %2").arg(p_profile->user->lastName()).arg(p_profile->user->firstName()) + "
";
+ userinfo = tr("Name: %1, %2").arg(p_profile->user->lastName()).arg(p_profile->user->firstName()) + "
";
if (!p_profile->user->DOB().isNull()) {
- userinfo += tr("DOB: %1").arg(p_profile->user->DOB().toString(MedDateFormat)) + "
";
+ userinfo += tr("DOB: %1").arg(p_profile->user->DOB().toString(MedDateFormat)) + "
";
}
if (!p_profile->user->phone().isEmpty()) {
- userinfo += tr("Phone: %1").arg(p_profile->user->phone()) + "
";
+ userinfo += tr("Phone: %1").arg(p_profile->user->phone()) + "
";
}
if (!p_profile->user->email().isEmpty()) {
- userinfo += tr("Email: %1").arg(p_profile->user->email()) + "
";
+ userinfo += tr("Email: %1").arg(p_profile->user->email()) + "
";
}
if (!p_profile->user->address().isEmpty()) {
- userinfo += tr("Address:")+"
"+address;
+ userinfo += tr("Address:")+"
"+address;
}
}
- while (userinfo.length() > 0 && userinfo.endsWith("
")) // Strip trailing newlines
+ while (userinfo.length() > 0 && userinfo.endsWith("
")) // Strip trailing newlines
userinfo = userinfo.mid(0, userinfo.length()-5);
return userinfo;
}
-const QString table_width = "width=100%";
+const QString table_width = "width='100%'";
// Create the page header in HTML. Includes everything from