Changes between Initial Version and Version 1 of Ticket #9199, comment 1
- Timestamp:
- Aug 21, 2012, 9:38:42 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9199, comment 1
initial v1 1 1 I'm guessing FileBrowser could use extra check. I’m attaching small patch. 2 3 Instead of: 4 {{{ 5 if ( element.type == 'hbox' || element.type == 'vbox' || element.type == 'fieldset' ) 6 }}} 7 checking first if element is available at all: 8 {{{ 9 if ( element && ( element.type == 'hbox' || element.type == 'vbox' || element.type == 'fieldset' ) ) 10 }}}