summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Dickmann <dickmann@php.net>2002-12-03 20:51:36 +0000
committerChristian Dickmann <dickmann@php.net>2002-12-03 20:51:36 +0000
commit910a03a8359ced0ac0a44fddce3d978a97bca8af (patch)
tree2edc1a6e9cfae695cd1f54d33b763c14960e96ce
parent956d63899c5d1dc3856796f80a8497203e6818bc (diff)
downloadphp-git-910a03a8359ced0ac0a44fddce3d978a97bca8af.tar.gz
silence some possible warnings
-rw-r--r--pear/PEAR/Command/Remote.php8
1 files 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);