From: Jan Schneider Date: Thu, 4 Feb 2010 22:25:29 +0000 (+0100) Subject: Remove debug code, fix scope. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=dc3e88ab0cc52f25d10dd8b56eb29444b3b2c9e3;p=horde.git Remove debug code, fix scope. --- diff --git a/horde/lib/Block/cloud.php b/horde/lib/Block/cloud.php index fede5dc2c..67298943f 100644 --- a/horde/lib/Block/cloud.php +++ b/horde/lib/Block/cloud.php @@ -56,8 +56,7 @@ class Horde_Block_Horde_cloud extends Horde_Block { $results = array(); foreach ($GLOBALS['registry']->listAPIs() as $api) { if ($GLOBALS['registry']->hasMethod($api . '/listTagInfo')) { - var_dump($api . '/listTagInfo'); - $result = $registry->call($api . '/listTagInfo'); + $result = $GLOBALS['registry']->call($api . '/listTagInfo'); if (!is_a($result, 'PEAR_Error')) { $results = array_merge($results, $result); }