From b65e60b0936ea6420749d9fcd6efcf081570a117 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Tue, 22 Oct 2002 23:08:09 +0000 Subject: [PATCH] * add transactions member array (for queueing file transactions) --- pear/PEAR/Installer.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pear/PEAR/Installer.php b/pear/PEAR/Installer.php index 21c268d291..e97a9cabc5 100644 --- a/pear/PEAR/Installer.php +++ b/pear/PEAR/Installer.php @@ -86,6 +86,11 @@ class PEAR_Installer extends PEAR_Common */ var $registry; + /** List of file transactions queued for an install/upgrade/uninstall. + * @var array + */ + var $transactions = array(); + // }}} // {{{ constructor -- 2.50.1