cellog Sun Sep 25 00:34:10 2005 EDT
Modified files:
/pear-core/PEAR Installer.php
Log:
fix warning on installation of xdebug (Derick)
http://cvs.php.net/diff.php/pear-core/PEAR/Installer.php?r1=1.215&r2=1.216&ty=u
Index: pear-core/PEAR/Installer.php
diff -u pear-core/PEAR/Installer.php:1.215 pear-core/PEAR/Installer.php:1.216
--- pear-core/PEAR/Installer.php:1.215 Wed Sep 21 23:56:42 2005
+++ pear-core/PEAR/Installer.php Sun Sep 25 00:34:08 2005
@@ -18,7 +18,7 @@
* @author Greg Beaver <cellog@xxxxxxx>
* @copyright 1997-2005 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
- * @version CVS: $Id: Installer.php,v 1.215 2005/09/22 03:56:42 cellog Exp $
+ * @version CVS: $Id: Installer.php,v 1.216 2005/09/25 04:34:08 cellog Exp $
* @link http://pear.php.net/package/PEAR
* @since File available since Release 0.1
*/
@@ -1310,13 +1310,14 @@
}
$this->addFileOperation('rename', array($ext['file'], $copyto));
- $filelist->installedFile($bn, array(
+ $filelist->installedFile($bn, array('attribs' => array(
'role' => $role,
+ 'name' => $bn,
'installed_as' => $dest,
'php_api' => $ext['php_api'],
'zend_mod_api' => $ext['zend_mod_api'],
'zend_ext_api' => $ext['zend_ext_api'],
- ));
+ )));
}
}
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|