CC-3797: Feedback Metrics "Show Me What I Am Sending" doesnt show all of the fields that are being sent
-now shows all keys, null or not, in the list
This commit is contained in:
parent
d2dc02cf9e
commit
c4c988b98a
1 changed files with 14 additions and 16 deletions
|
@ -465,10 +465,9 @@ class Application_Model_Preference
|
||||||
|
|
||||||
$outputString = "\n";
|
$outputString = "\n";
|
||||||
foreach($outputArray as $key => $out){
|
foreach($outputArray as $key => $out){
|
||||||
if($key == 'SAAS' && ($out != '' || $out != 'disabled')){
|
if($key == 'TRIAL_END_DATE' && ($out != '' || $out != 'NULL')){
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if($out != '' || is_numeric($out)){
|
|
||||||
if($key == "STREAM_INFO"){
|
if($key == "STREAM_INFO"){
|
||||||
$outputString .= $key." :\n";
|
$outputString .= $key." :\n";
|
||||||
foreach($out as $s_info){
|
foreach($out as $s_info){
|
||||||
|
@ -486,7 +485,6 @@ class Application_Model_Preference
|
||||||
$outputString .= $key.' : '.$out."\n";
|
$outputString .= $key.' : '.$out."\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if($returnArray){
|
if($returnArray){
|
||||||
$outputArray['PROMOTE'] = self::GetPublicise();
|
$outputArray['PROMOTE'] = self::GetPublicise();
|
||||||
$outputArray['LOGOIMG'] = self::GetStationLogo();
|
$outputArray['LOGOIMG'] = self::GetStationLogo();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue