From a2b9bae28416307b375a4439f8fb873683fe5dd3 Mon Sep 17 00:00:00 2001 From: reliberate Date: Sat, 15 Aug 2015 09:07:01 -0600 Subject: [PATCH] Destinations: Hide unrelated form elements on edit of Outbound Destination. --- app/destinations/destination_edit.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/destinations/destination_edit.php b/app/destinations/destination_edit.php index e715c48b97..ce238e627d 100644 --- a/app/destinations/destination_edit.php +++ b/app/destinations/destination_edit.php @@ -884,6 +884,11 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) { echo "

"; echo ""; +//adjust form if outbound destination + if ($destination_type == 'outbound') { + echo "\n"; + } + //include the footer require_once "resources/footer.php";