From: Stig Bakken Date: Sun, 31 Mar 2002 03:16:02 +0000 (+0000) Subject: * E_ALL fix X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~948 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=561ac3d54e0d2f7e7ae969a8b6651efd9d8ac4e8;p=php * E_ALL fix --- diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index efbaaac2a7..b3dfcfded5 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -504,7 +504,9 @@ class PEAR_Common extends PEAR */ function _pkginfo_cdata_1_0($xp, $data) { - $this->cdata .= $data; + if (isset($this->cdata)) { + $this->cdata .= $data; + } } // }}}