- suppressing error msg in case there is an error

This commit is contained in:
james 2011-06-30 13:52:51 -04:00
parent 3d819297b9
commit 600f80e03f
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ class Application_Model_Preference
public static function SetStationLogo($imagePath){
if(!empty($imagePath)){
$image = file_get_contents($imagePath);
$image = @file_get_contents($imagePath);
$image = base64_encode($image);
Application_Model_Preference::SetValue("logoImage", $image);
}