From 3e7b31d7e1857cb937edd673d06f64293594f857 Mon Sep 17 00:00:00 2001 From: Pierre Date: Fri, 29 Dec 2017 10:23:59 +0100 Subject: [PATCH] Added space in error message --- RestControllers/conversationsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RestControllers/conversationsController.php b/RestControllers/conversationsController.php index 528d9bf..c5863a2 100644 --- a/RestControllers/conversationsController.php +++ b/RestControllers/conversationsController.php @@ -51,7 +51,7 @@ class conversationsController{ //Check if a conversation was found if(count($conversationsList) < 1) Rest_fatal_error(401, "Users doesn't belong to the specified conversation,". - "or the conversation doesn't exists !"); + " or the conversation doesn't exists !"); //Return conversation informations return $conversationsList[0];