From af03ecf9e193cfced74c3454f17dc1bf36f61ad0 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Fri, 30 Apr 2004 02:05:45 +0000 Subject: fix 1186: notice in PEAR_Common undeclared $_packageName --- pear/PEAR/Common.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pear/PEAR') 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"; -- cgit v1.2.1