Module: check_mk
Branch: master
Commit: 12e870f9aaa178521b3f18cb81bcdacc83763afa
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=12e870f9aaa178…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Thu Apr 24 13:15:20 2014 +0200
fixed exception when using the table search function
---
web/htdocs/table.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/htdocs/table.py b/web/htdocs/table.py
index 2bb03c4..7a4cef0 100644
--- a/web/htdocs/table.py
+++ b/web/htdocs/table.py
@@ -177,7 +177,7 @@ def end():
for row, css, state in rows:
if state == "header":
continue
- for cell_content, css_classes in row:
+ for cell_content, css_classes, colspan in row:
if search_term in cell_content.lower():
filtered_rows.append((row, css, state))
break # skip other cells when matched