diff --git a/NT/elogd.vcxproj b/NT/elogd.vcxproj
index 3ed99bc5..77adff91 100644
--- a/NT/elogd.vcxproj
+++ b/NT/elogd.vcxproj
@@ -97,7 +97,7 @@
AnySuitable
true
Speed
- \mxml;%(AdditionalIncludeDirectories)
+ \openssl\include;\mxml;\krb5\inc\krb5;\mxml;%(AdditionalIncludeDirectories)
WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;HAVE_SSL;%(PreprocessorDefinitions)
true
MultiThreaded
diff --git a/NT/elogd.vcxproj.filters b/NT/elogd.vcxproj.filters
index 24cb46dc..fca558bc 100644
--- a/NT/elogd.vcxproj.filters
+++ b/NT/elogd.vcxproj.filters
@@ -1,97 +1,96 @@
-
- Soure Files
-
-
- Soure Files
-
+
+ {ad5e3970-54d2-4d19-8942-2ccbd6d4cf64}
+ cpp;c;cxx;rc;def;r;odl;idl;hpj;bat
+
+
+ {b1cef06b-777e-496e-84ed-ae6597e6bd3c}
+ ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;css
+
+
+ {d0f69847-a3e4-4b11-ad7c-b6ec1305db77}
+ txt;htm;html
+
+
+ {f61d8ff6-47d2-4a74-9ee5-287870f8f9e6}
+ h;hpp;hxx;hm;inl
+
+
+ {f1a62f8d-a52e-459b-9dae-727ade5fa0eb}
+
+
+
- Soure Files
+ Source Files
- Soure Files
+ Source Files
- Soure Files
+ Source Files
- Soure Files
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
-
- Include Files
-
-
- Include Files
-
-
- Include Files
-
-
-
-
- Documents
-
-
- Documents
-
-
- Documents
-
- ResourceFiles
+ Resource Files
- ResourceFiles
+ Resource Files
- ResourceFiles
+ Resource Files
- ResourceFiles
+ Resource Files
-
- ResourceFiles
+
+ Documentation
-
- ResourceFiles
+
+ Documentation
-
- ResourceFiles
+
+ Documentation
- Documents
+ Documentation
+
+ FCKedit
+
+
+ FCKedit
+
+
- Documents
+ Documentation
-
- Libraries
-
-
- Libraries
-
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
-
- {c44cc741-88dd-4749-a5c3-203b506ee005}
-
-
- {0bd65de6-4aed-4b30-96c7-2cddfd8ada18}
-
-
- {29e57f30-92a6-4986-8025-3329410619a1}
-
-
- {0364998a-1ac8-4a2d-8d29-73599186159f}
-
-
- {2416d8ae-1da8-4c95-94c9-35ca2fed5df8}
-
+
+
+
\ No newline at end of file
diff --git a/doc/config.html b/doc/config.html
index ac54baa8..1105de2f 100755
--- a/doc/config.html
+++ b/doc/config.html
@@ -1559,7 +1559,12 @@ Style importance severe = background-color:red
For possible formattings, please refer to some CSS documentation. You can
change the colors, font styles and sizes. The style is then valid for the
- whole row of that entry.
+ whole row of that entry.
+
+ For empty attributes one can specify "", such as
+
+Style importance "" = background-color:red
+
Cell Style <attribute> <value> = <style>
diff --git a/src/elogd.c b/src/elogd.c
index f12d9362..be2d0f33 100755
--- a/src/elogd.c
+++ b/src/elogd.c
@@ -17020,7 +17020,10 @@ void display_line(LOGBOOK * lbs, int message_id, int number, char *mode, int exp
/* check attributes for row style */
for (i = 0; i < n_attr; i++) {
- sprintf(str, "Style %s %s", attr_list[i], attrib[i]);
+ if (attrib[i][0] == 0)
+ sprintf(str, "Style %s \"\"", attr_list[i]);
+ else
+ sprintf(str, "Style %s %s", attr_list[i], attrib[i]);
if (getcfg(lbs->name, str, display, sizeof(display))) {
sprintf(str, "%s\" style=\"%s\"", rowstyle, display);
strlcpy(rowstyle, str, sizeof(rowstyle));