| @@ -188,9 +188,12 @@ | ||
| 188 | 188 | json_encode( WPDA::sanitize_text_field_array( $_REQUEST['table_names'] ) ) : ''; // phpcs:ignore |
| 189 | 189 | $wp_nonce = isset( $_REQUEST['_wpnonce'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ) : '?'; // input var okay. |
| 190 | 190 | if ( |
| 191 | 191 | ! wp_verify_nonce( $wp_nonce, "wpda-export-{$table_names}" ) && |
| 192 | - ! wp_verify_nonce( $wp_nonce, 'wpda-export-' . WPDA::get_current_user_login() ) | |
| 192 | + ! ( | |
| 193 | + WPDA::current_user_is_admin() && // Admins are allowed to export all tables | |
| 194 | + wp_verify_nonce( $wp_nonce, 'wpda-export-' . WPDA::get_current_user_login() ) | |
| 195 | + ) | |
| 193 | 196 | ) { |
| 194 | 197 | wp_die(); |
| 195 | 198 | } |
| 196 | 199 | |