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:
parent
2fb721167c
commit
dd4ea127fc
5 changed files with 251 additions and 250 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue