multifilter bug fix

This commit is contained in:
dheerajrav
2016-05-05 18:51:41 +05:30
parent 8b5dc8ef68
commit 83a03a22b1

View File

@@ -279,7 +279,7 @@
var typeSplit;
if (column.indexOf("::") != -1) {
typeSplit = "::";
} else if (column.indexOf("__" != -1)) {
} else if (column.indexOf("__") != -1) {
typeSplit = "__";
} else {
return column;