From d479fdfa3e03b1b5dea4bb5b76c3c82774e724c0 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Thu, 24 Apr 2014 09:39:27 +0000 Subject: [PATCH] update the comment --- app/destinations/destination_delete.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/destinations/destination_delete.php b/app/destinations/destination_delete.php index e473659e65..2d6d6bc3d0 100644 --- a/app/destinations/destination_delete.php +++ b/app/destinations/destination_delete.php @@ -45,8 +45,8 @@ else { $id = check_str($_GET["id"]); } -//if no id then exit - if (isset($id)) { +//if the ID is not set then exit + if (!isset($id)) { echo "ID is required."; exit; }