From f35f561f67affd016603bdd8f49b09adf8e86ca3 Mon Sep 17 00:00:00 2001 From: denise Date: Fri, 25 May 2012 10:49:25 -0400 Subject: [PATCH] CC-3797: Feedback Metrics "Show Me What I Am Sending" doesnt show all of the fields that are being sent - removed 'SAAS' --- airtime_mvc/application/models/Preference.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtime_mvc/application/models/Preference.php b/airtime_mvc/application/models/Preference.php index 21e08be1b..62eb62ee0 100644 --- a/airtime_mvc/application/models/Preference.php +++ b/airtime_mvc/application/models/Preference.php @@ -487,6 +487,10 @@ class Application_Model_Preference } else if (!$out) { $outputString .= $key." : FALSE\n"; } + }else if ($key == "SAAS") { + if (strcmp($out, 'disabled')!=0) { + $outputString .= $key.' : '.$out."\n"; + } }else{ $outputString .= $key.' : '.$out."\n"; }