From 9a32c4e589652329fd03a166b85c3ac1a3e88a19 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Thu, 6 Mar 2008 14:03:30 +0000 Subject: [PATCH] Made 'ID' work for quick filter SVN revision: 2071 --- src/elogd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/elogd.c b/src/elogd.c index c5301a6c..ca030679 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -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; }