From 165604818c5a9e9af6de968de322a9f8f570a597 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Thu, 3 Apr 2003 23:04:52 +0000 Subject: [PATCH] * initialize pkginfo with an empty provides array --- pear/PEAR/Common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index af47e81fd5..94898fae6d 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -751,7 +751,7 @@ class PEAR_Common extends PEAR xml_parser_set_option($xp, XML_OPTION_CASE_FOLDING, false); $this->element_stack = array(); - $this->pkginfo = array(); + $this->pkginfo = array('provides' => array()); $this->current_element = false; unset($this->dir_install); $this->pkginfo['filelist'] = array(); -- 2.50.1