ws, cs caught by CI
authorMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 24 Dec 2010 16:51:58 +0000 (11:51 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 24 Dec 2010 17:04:49 +0000 (12:04 -0500)
framework/Core/lib/Horde/Config.php
framework/Core/lib/Horde/Core/Share/Driver.php

index f3c2499..9f4f737 100644 (file)
@@ -1630,7 +1630,8 @@ class Horde_Config
         case 'list-contact-sources':
             try {
                 return $GLOBALS['registry']->call('contacts/sources');
-            } catch (Horde_Exception $e) {}
+            } catch (Horde_Exception $e) {
+            }
             break;
         }
 
index e4a4707..7523448 100644 (file)
@@ -44,7 +44,8 @@ class Horde_Core_Share_Driver
 
         try {
             Horde::callHook('share_init', array($this, $this->_share->getApp()));
-        } catch (Horde_Exception_HookNotSet $e) {}
+        } catch (Horde_Exception_HookNotSet $e) {
+        }
     }
 
     /**
@@ -197,7 +198,8 @@ class Horde_Core_Share_Driver
         try {
             $params = new Horde_Support_Array($params);
             return Horde::callHook('share_list', array($userid, $params['perm'], $params['attributes'], $shares));
-        } catch (Horde_Exception_HookNotSet $e) {}
+        } catch (Horde_Exception_HookNotSet $e) {
+        }
 
         return $shares;
     }
@@ -211,7 +213,8 @@ class Horde_Core_Share_Driver
     {
         try {
             Horde::callHook('share_add', array($share));
-        } catch (Horde_Exception_HookNotSet $e) {}
+        } catch (Horde_Exception_HookNotSet $e) {
+        }
     }
 
     /**