From: Stig Bakken Date: Mon, 25 Nov 2002 23:15:31 +0000 (+0000) Subject: * silence some notices X-Git-Tag: RELEASE_1_0b2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f1c21aea20f9efe541368891762b647f7124625;p=php * silence some notices --- diff --git a/pear/PEAR/Command/Common.php b/pear/PEAR/Command/Common.php index 16953d06b4..51305e233a 100644 --- a/pear/PEAR/Command/Common.php +++ b/pear/PEAR/Command/Common.php @@ -208,9 +208,9 @@ class PEAR_Command_Common extends PEAR } if (isset($v['shortopt'])) { $s = $v['shortopt']; - $help .= " -$s$sapp, --$k$lapp\n"; + @$help .= " -$s$sapp, --$k$lapp\n"; } else { - $help .= " --$k$lapp\n"; + @$help .= " --$k$lapp\n"; } $p = " "; $doc = rtrim(str_replace("\n", "\n$p", $v['doc']));