Merge branch '2.5.x-albertenhancements' into saas

This commit is contained in:
Duncan Sommerville 2015-03-02 15:26:13 -05:00
commit ccb4b1552e
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class PreferenceController extends Zend_Controller_Action
$imagePath = $logoUploadElement->getFileName();
// Only update the image logo if the new logo is non-empty
if (!is_null($imagePath) && $imagePath != "") {
if (!empty($imagePath) && $imagePath != "") {
Application_Model_Preference::SetStationLogo($imagePath);
}