From 7e7676f8fbf41ad21ee9c363115da67dd2041987 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Tue, 9 Apr 2002 21:48:19 +0000 Subject: [PATCH] * ignore files in older releases (changelog) --- pear/PEAR/Common.php | 6 ++++++ 1 file changed, 6 insertions(+) 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)) { -- 2.50.1