Changes between Initial Version and Version 2 of Ticket #650
- Timestamp:
- Jun 22, 2007, 2:43:16 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #650
- Property Cc hkramer@… added
- Property Reporter changed from Martin Kou to topodian@…
-
Ticket #650 – Description
initial v2 8 8 Its a simple fix: 9 9 10 11 {{{ 10 12 sConfig = sConfig & "&" & HTMLEditFormat( 11 13 fieldName ) & '=' & HTMLEditFormat( fieldValue ); 14 }}} 15 12 16 13 17 2. Again in fckeditor.cfm, the isBoolean() test to … … 19 23 Again a simple fix: 20 24 25 26 {{{ 21 27 if( isBoolean(fieldValue) and NOT isNumeric(fieldValue) 22 28 and fieldValue ) fieldValue = "true"; 23 29 else if( isBoolean( fieldValue) and NOT isNumeric 24 30 (fieldValue) ) fieldValue = "false"; 31 }}} 32 25 33 26 34 Basically I just added "AND NOT isNumeric(fieldValue)".