o #508124 by voxpelli: Optionally allow boolean to treat NULL as FALSE.
o #487528 by dereine: Fix typo in 'Maximum length' field instructions.
o #303800 by Justin W Freeman: Improve dashes to spaces transformation.
+ o #538530 by elcuco: Views export textareas should be LTR.
Other changes:
o Implement a post_render hook (for themes too) and cache method.
'#type' => 'textarea',
'#id' => 'export-api-textarea',
'#name' => 'export-api-textarea',
- '#attributes' => array(),
+ '#attributes' => array( 'dir' => 'ltr' ),
'#rows' => 9,
'#cols' => 60,
'#value' => $api,
'#type' => 'textarea',
'#id' => 'export-textarea',
'#name' => 'export-textarea',
- '#attributes' => array(),
+ '#attributes' => array( 'dir' => 'ltr' ),
'#rows' => min($lines, 150),
'#value' => $code,
'#parents' => array('dummy'),