- View by:
- lightbox
- list
Diagram - British power boat company type 2 R.A.F. high speed launches (4) - nos: HSL 128 - HSL 156 - HSL 164 - HSL 188 - 1940
1/01/1940
/** * Filters the delimiter used in CSV exports of form entries. * * @link https://wpforms.com/developers/change-csv-export-delimiter/ */ function wpf_dev_pro_admin_entries_export_configuration( $configuration ) { $configuration[ 'csv_export_separator' ] = ';'; return $configuration; } add_filter( 'wpforms_pro_admin_entries_export_configuration', 'wpf_dev_pro_admin_entries_export_configuration', 10, 1 );