Make WordPress Core

Ticket #42269: 42269.patch

File 42269.patch, 601 bytes (added by ramiy, 7 years ago)
  • wp-admin/export.php

     
    99/** Load WordPress Bootstrap */
    1010require_once( dirname( __FILE__ ) . '/admin.php' );
    1111
    12 if ( !current_user_can('export') )
    13         wp_die(__('Sorry, you are not allowed to export the content of this site.'));
     12if ( ! current_user_can( 'export' ) )
     13        wp_die( __( 'Sorry, you are not allowed to export content.' ) );
    1414
    1515/** Load WordPress export API */
    1616require_once( ABSPATH . 'wp-admin/includes/export.php' );