From b8df764ec37242582b2308b3682d4885864943dd Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 17 Feb 2010 18:20:28 -0700 Subject: [PATCH] Fix setting no sound for alarms --- horde/admin/alarms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']; } -- 2.11.0