Commit 1a009a6a authored by Yusei Tahara's avatar Yusei Tahara

2008-09-03 yusei

* Don't extract title from field if tales expression was used.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@23385 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d3a5e7f2
......@@ -146,7 +146,8 @@ for i in form_list:\n
# ListBox title, columns\n
#\n
for i in listbox_list:\n
add_message(i.title(), portal_url.getRelativeContentURL(i))\n
if i.get_tales(\'title\')==\'\':\n
add_message(i.title(), portal_url.getRelativeContentURL(i))\n
for value, label in i.get_value(\'columns\') or ():\n
add_message(label, portal_url.getRelativeContentURL(i))\n
for value, label in i.get_value(\'all_columns\') or ():\n
......
2008-09-03 yusei
* Don't extract title from field if tales expression was used.
2008-09-02 yusei
* Don't extract title from field libraries.
......
357
\ No newline at end of file
359
\ No newline at end of file
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