CC-3797: Feedback Metrics "Show Me What I Am Sending" doesnt show all of the fields that are being sent

- removed 'SAAS'
This commit is contained in:
denise 2012-05-25 10:49:25 -04:00
parent d91850b1ca
commit f35f561f67

View file

@ -487,6 +487,10 @@ class Application_Model_Preference
} else if (!$out) { } else if (!$out) {
$outputString .= $key." : FALSE\n"; $outputString .= $key." : FALSE\n";
} }
}else if ($key == "SAAS") {
if (strcmp($out, 'disabled')!=0) {
$outputString .= $key.' : '.$out."\n";
}
}else{ }else{
$outputString .= $key.' : '.$out."\n"; $outputString .= $key.' : '.$out."\n";
} }