Skip to content

Commit

Permalink
Update messages_thread.php
Browse files Browse the repository at this point in the history
  • Loading branch information
markjcrane committed Aug 21, 2019
1 parent d3679bb commit c48a160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/messages/messages_thread.php
Expand Up @@ -41,7 +41,7 @@

//get number of messages to load
$number = preg_replace('{[\D]}', '', $_GET['number']);
$contact_uuid = $_GET['contact_uuid'];
$contact_uuid = (is_uuid($_GET['contact_uuid'])) ? $_GET['contact_uuid'] : null;

//set refresh flag
$refresh = $_GET['refresh'] == 'true' ? true : false;
Expand Down Expand Up @@ -335,4 +335,4 @@
}
}

?>
?>

0 comments on commit c48a160

Please sign in to comment.