From: Christian Dickmann Date: Tue, 3 Dec 2002 20:51:36 +0000 (+0000) Subject: silence some possible warnings X-Git-Tag: RELEASE_1_0b3~186 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=910a03a8359ced0ac0a44fddce3d978a97bca8af;p=php silence some possible warnings --- diff --git a/pear/PEAR/Command/Remote.php b/pear/PEAR/Command/Remote.php index deb0139596..ac4c17f216 100644 --- a/pear/PEAR/Command/Remote.php +++ b/pear/PEAR/Command/Remote.php @@ -200,10 +200,10 @@ version of DB is 1.2, the downloaded file will be DB-1.2.tgz.', $data['data'][$info['category']][] = array( $name, - $info['stable'], - $installed['version'], - $desc, - $info['deps'], + @$info['stable'], + @$installed['version'], + @$desc, + @$info['deps'], ); } $this->ui->outputData($data, $command);