From: Stig Bakken Date: Tue, 9 Apr 2002 21:48:19 +0000 (+0000) Subject: * ignore files in older releases (changelog) X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~759 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e7676f8fbf41ad21ee9c363115da67dd2041987;p=php * ignore files in older releases (changelog) --- diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index 63696ed630..105f691f14 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -331,6 +331,9 @@ class PEAR_Common extends PEAR } break; case 'file': + if ($this->in_changelog) { + break; + } if (isset($attribs['name'])) { $path = ''; if (count($this->dir_names)) { @@ -488,6 +491,9 @@ class PEAR_Common extends PEAR array_pop($this->dir_names); break; case 'file': + if ($this->in_changelog) { + break; + } if ($data) { $path = ''; if (count($this->dir_names)) {