Skip to content

Commit

Permalink
PSA-74 - Undefined Array Key
Browse files Browse the repository at this point in the history
  • Loading branch information
smusmanobjects committed Jul 1, 2024
1 parent 852175b commit ba55249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Postman/PostmanEmailLogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ public function get_logs_ajax() {
$query['end'] = sanitize_text_field( $_GET['length'] );
$query['search'] = sanitize_text_field( $_GET['search']['value'] );
$query['order'] = sanitize_text_field( $_GET['order'][0]['dir'] );
$query['status'] = sanitize_text_field( $_GET['status'] );
$query['status'] = isset( $_GET['status'] ) ? sanitize_text_field( $_GET['status'] ) : '';

//MainWP | Get Sites
if( isset( $_GET['site_id'] ) ) {
Expand Down

0 comments on commit ba55249

Please sign in to comment.