From 87c305f8243a44bd1f099c2a53bd9b1f7d7b803b Mon Sep 17 00:00:00 2001 From: Yoshinori Okuji <yo@nexedi.com> Date: Tue, 9 Nov 2004 17:28:59 +0000 Subject: [PATCH] Use evaluate only for tales. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1903 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Type/dtml/properties.dtml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/product/ERP5Type/dtml/properties.dtml b/product/ERP5Type/dtml/properties.dtml index f7a83b0a49..0b87ad54ea 100755 --- a/product/ERP5Type/dtml/properties.dtml +++ b/product/ERP5Type/dtml/properties.dtml @@ -87,7 +87,10 @@ property values, edit the values and click "Save Changes". <dtml-elif "type in ('float', 'date')"> <input type="text" name="&dtml-id;:<dtml-var "REQUEST['management_page_charset_tag']">&dtml-type;" size="35" value="<dtml-var "getProperty(id)" html_quote>"> - <dtml-elif "type in ['string','ustring','tales']"> + <dtml-elif "type in ['string','ustring']"> + <input type="text" name="&dtml-id;:<dtml-var "REQUEST['management_page_charset_tag']">&dtml-type;" size="35" + value="<dtml-var "getProperty(id)" html_quote>"> + <dtml-elif "type == 'tales'"> <input type="text" name="&dtml-id;:<dtml-var "REQUEST['management_page_charset_tag']">&dtml-type;" size="35" value="<dtml-var "getProperty(id, evaluate=0)" html_quote>"> <dtml-elif "type=='boolean'"> -- 2.30.9