Fixed bug with sorting attributes

SVN revision: 1855
This commit is contained in:
2007-04-27 06:11:36 +00:00
parent 9c80b582dc
commit 0c6bf63c18
+1 -1
View File
@@ -17949,7 +17949,7 @@ void show_elog_list(LOGBOOK * lbs, int past_n, int last_n, int page_n, BOOL defa
if ((isparam("sort") && strieq(getparam("sort"), attr_list[i]))
|| (isparam("rsort") && strieq(getparam("rsort"), attr_list[i]))) {
strlcpy(msg_list[index].string, attrib[i], 256);
if (attr_flags[i] | AF_NUMERIC)
if (attr_flags[i] & AF_NUMERIC)
numeric = TRUE;
}