From 910a03a8359ced0ac0a44fddce3d978a97bca8af Mon Sep 17 00:00:00 2001 From: Christian Dickmann Date: Tue, 3 Dec 2002 20:51:36 +0000 Subject: [PATCH] silence some possible warnings --- pear/PEAR/Command/Remote.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.50.1