Add HTML tags back into code after a bug was fixed in raptor.

This commit is contained in:
rhp%netscape.com 1999-01-25 23:19:24 +00:00
Родитель 6c0d9026ee
Коммит ec1580ef25
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -1735,12 +1735,10 @@ static int WriteLineToStream (MimeObject *obj, const char *line)
if (htmlLine)
{
htmlLine[0] = '\0';
// RICHIECSS - TEMPORARY FIX FOR A LAYOUT PROBLEM
// PL_strcat (htmlLine, "<DT>");
PL_strcat (htmlLine, "<DT>");
PL_strcat (htmlLine, line);
// RICHIECSS - TEMPORARY FIX FOR A LAYOUT PROBLEM
// PL_strcat (htmlLine, "</DT>");
status = MIME_MimeObject_write(obj, htmlLine, PL_strlen(htmlLine), PR_TRUE);
PL_strcat (htmlLine, "</DT>");
status = MIME_MimeObject_write(obj, htmlLine, PL_strlen(htmlLine), PR_TRUE);
PR_Free ((void*) htmlLine);
}
else