Made 'ID' work for quick filter

SVN revision: 2071
This commit is contained in:
2008-03-06 14:03:30 +00:00
parent e24efd75b8
commit 9a32c4e589
+3 -1
View File
@@ -17762,7 +17762,9 @@ void show_page_filters(LOGBOOK * lbs, int n_msg, int page_n, BOOL mode_commands,
for (attr_index = 0; attr_index < lbs->n_attr; attr_index++)
if (strieq(list[index], attr_list[attr_index]))
break;
if (attr_index == lbs->n_attr && !strieq(list[index], "Date") && !strieq(list[index], "Subtext")) {
if (attr_index == lbs->n_attr && !strieq(list[index], "Date") && !strieq(list[index], "Subtext") &&
!strieq(list[index], "ID")) {
rsprintf("Error: Attribute \"%s\" for quick filter not found", list[index]);
attr_index = 0;
}