Commit a99063c9 authored by Vincent Pelletier's avatar Vincent Pelletier

Remove last remain of search_%s_%s listbox search field name format.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10253 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 100f0755
......@@ -1297,7 +1297,7 @@ class ListBoxRenderer:
search_column_id_set = self.getSearchColumnIdSet()
param_dict = self.getParamDict()
value_list = []
for (sql, title), alias in zip(self.getSelectedColumnList(), ['search_%s_%s' % (self.getId(), alias) for alias in self.getColumnAliasList()]):
for (sql, title), alias in zip(self.getSelectedColumnList(), self.getColumnAliasList()):
if sql in search_column_id_set:
# Get the current value and encode it in unicode.
param = param_dict.get(alias, u'')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment