CC-1724:Phone home statistic

- Fixed the bug where it didn't populate country dropdown box
This was due to default sql not popuplate country table correctly
- Changed 180*180 min log text to 200*200
- Changed text are size in support settings
- Client now sends base64encoded image to server.
This commit is contained in:
James Moon 2011-06-20 20:31:20 -07:00
parent 2fb721167c
commit dd4ea127fc
5 changed files with 251 additions and 250 deletions

View file

@ -283,7 +283,7 @@ class Application_Model_Preference
$res = $CC_DBC->GetAll($sql);
$out = array();
foreach($res as $r){
$out[$r["iso_code"]] = $r["name"];
$out[$r["isocode"]] = $r["name"];
}
return $out;
}
@ -335,6 +335,7 @@ class Application_Model_Preference
$outputString .= $key.' : '.$out."\n";
}
if($returnArray){
$outputArray['LOGOIMG'] = Application_Model_Preference::GetStationLogo();
return $outputArray;
}else{
return $outputString;