get( 'field_class', 'cf_datetime_picker' )}'), { pickerClass: '{$params->get( 'pickerClass', 'datepicker_dashboard' )}', format: '{$params->get( 'format', 'd-m-Y H:i:s' )}', allowEmpty: {$params->get( 'allowEmpty', 'true' )}, timePicker: {$params->get( 'timePicker', 'true' )}, pickOnly: '{$pick_only}'"; $pickerClass = "Picker.Date";Also $pickerClass is undefined and the warning message breaks the code if Site Error Reporting is on.Request to add the Remote database tab to the DB Multi_Record Loader[/list:o]"> ChronoForms v4 RC3.21 bugs & fixes - Forums

Forums

ChronoForms v4 RC3.21 bugs & fixes

GreyHead 01 Apr, 2012
This is a note of reported bugs in ChronoForms v4 RC 3.21

I think that the majority of bugs from previous versions have been fixed, see the list for RC 3.2 here.

[list=a]
  • There are some bugs in the Joomla! Registration action. See this thread


  • The Custom MooTools DatePicker action has some small bugs. The PickOnly option is missing quotes and defaults to 0/false so breaks if the quotes are added. Fix is in the file custom_datepicker_moo/cfaction_custom_datepicker_moo.php:
    			$pick_only = $params->get( 'pickOnly', '' );
    			if ( $pick_only === false || $pick_only == '0' ) {
    				$pick_only = '';
    			}
    			$con_str = "$$('.{$params->get( 'field_class', 'cf_datetime_picker' )}'),
    				{ pickerClass: '{$params->get( 'pickerClass', 'datepicker_dashboard' )}',
    				format: '{$params->get( 'format', 'd-m-Y H:i:s' )}',
    				allowEmpty: {$params->get( 'allowEmpty', 'true' )},
    				timePicker: {$params->get( 'timePicker', 'true' )},
    				pickOnly: '{$pick_only}'";
    			$pickerClass = "Picker.Date";

    Also $pickerClass is undefined and the warning message breaks the code if Site Error Reporting is on.


  • Request to add the Remote database tab to the DB Multi_Record Loader
  • [/list:o]
    This topic is locked and no more replies can be posted.