From: Michael J. Rubinsky Date: Wed, 26 Jan 2011 16:59:40 +0000 (-0500) Subject: remove PEAR::pushErrorHandling() call X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=399e2191218f3910cd9e9b3cfc58f5b159a77b91;p=horde.git remove PEAR::pushErrorHandling() call --- diff --git a/kronolith/scripts/upgrades/convert_to_utc.php b/kronolith/scripts/upgrades/convert_to_utc.php index 3e53238e1..3b6308dc7 100755 --- a/kronolith/scripts/upgrades/convert_to_utc.php +++ b/kronolith/scripts/upgrades/convert_to_utc.php @@ -9,7 +9,6 @@ require_once dirname(__FILE__) . '/../../lib/Application.php'; Horde_Registry::appInit('kronolith', array('cli' => true)); /* Prepare DB stuff. */ -PEAR::pushErrorHandling(PEAR_ERROR_CALLBACK, create_function('$e', 'echo $e->toString()."\n";exit;')); $db = $injector->getInstance('Horde_Db_Adapter'); try { $result = $db->selectAll('SELECT event_title, event_id, event_creator_id, event_start, event_end, event_allday, event_recurenddate FROM ' . $conf['calendar']['params']['table'] . ' ORDER BY event_creator_id');