Making WordPress.org


Ignore:
Timestamp:
02/12/2018 05:39:09 PM (7 years ago)
Author:
iandunn
Message:

WordCamp Payments: Call Export_CSV::esc_csv() instead of wcorg_esc_csv().

The latter was removed in favor of the former.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/camptix-badge-generator/includes/indesign-badges.php

    r4396 r6600  
    55use \CampTix\Badge_Generator\HTML;
    66use \WordCamp\Logger;
     7use WordCamp\Utilities;
    78
    89defined( 'WPINC' ) or die();
     
    212213    }
    213214
    214     fputcsv( $csv_handle, wcorg_esc_csv( get_header_row( $admin_flags, $questions ) ) );
     215    fputcsv( $csv_handle, Utilities\Export_CSV::esc_csv( get_header_row( $admin_flags, $questions ) ) );
    215216
    216217    foreach ( $attendees as $attendee ) {
     
    221222        }
    222223
    223         fputcsv( $csv_handle, wcorg_esc_csv( $row ) );
     224        fputcsv( $csv_handle, Utilities\Export_CSV::esc_csv( $row ) );
    224225    }
    225226
Note: See TracChangeset for help on using the changeset viewer.