From: Greg Beaver Date: Fri, 30 Apr 2004 02:05:45 +0000 (+0000) Subject: fix 1186: notice in PEAR_Common undeclared $_packageName X-Git-Tag: RELEASE_0_1~324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af03ecf9e193cfced74c3454f17dc1bf36f61ad0;p=php fix 1186: notice in PEAR_Common undeclared $_packageName --- diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index 3329fc6b6e..6e11a0d027 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -1235,7 +1235,10 @@ class PEAR_Common extends PEAR function buildProvidesArray($srcinfo) { $file = basename($srcinfo['source_file']); - $pn = $this->_packageName; + $pn = ''; + if (isset($this->_packageName)) { + $pn = $this->_packageName; + } $pnl = strlen($pn); foreach ($srcinfo['declared_classes'] as $class) { $key = "class;$class";