From: Michael M Slusarz Date: Thu, 18 Feb 2010 01:20:28 +0000 (-0700) Subject: Fix setting no sound for alarms X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b8df764ec37242582b2308b3682d4885864943dd;p=horde.git Fix setting no sound for alarms --- diff --git a/horde/admin/alarms.php b/horde/admin/alarms.php index 8c06cfcd4..a83ac530d 100644 --- a/horde/admin/alarms.php +++ b/horde/admin/alarms.php @@ -57,7 +57,7 @@ if ($form->validate()) { } // Full path to any sound files. - if (isset($params['notify']['sound'])) { + if (!empty($params['notify']['sound'])) { $params['notify']['sound'] = $registry->get('themesuri', 'horde') . '/sounds/' . $params['notify']['sound']; }