修复http manipulate 导出action 字段为 Manipulate

This commit is contained in:
wangwei
2019-06-04 09:41:47 +08:00
parent 0406998c42
commit 5036f89db5

View File

@@ -2701,6 +2701,13 @@ public class ExportExcel {
dict="action_spoofing";
val = msgProp.getProperty(dict,dict);
}
//http(s) manipulate 导出action修改为Manipulate
if(ef.title().equals("block_type")
&& dict.equals("action_redirect")
&& (Reflections.invokeGetter(e, "serviceId").toString().equals("656"))) {
dict="action_manipulate";
val = msgProp.getProperty(dict,dict);
}
}
}