cvs: pear-core / package-PEAR.xml package2.xml /PEAR/Command Install.php
[email protected] ("Greg Beaver")
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <cvscellog1210703549@cvsserver> |
cellog Tue May 13 18:32:29 2008 UTC
Modified files:
/pear-core package-PEAR.xml package2.xml
/pear-core/PEAR/Command Install.php
Log:
* Fix Bug #13870 Notice uninstalling or using bundles [cellog]
http://cvs.php.net/viewvc.cgi/pear-core/package-PEAR.xml?r1=1.530&r2=1.531&diff_format=u
Index: pear-core/package-PEAR.xml
diff -u pear-core/package-PEAR.xml:1.530 pear-core/package-PEAR.xml:1.531
--- pear-core/package-PEAR.xml:1.530 Tue May 13 18:03:36 2008
+++ pear-core/package-PEAR.xml Tue May 13 18:32:29 2008
@@ -105,6 +105,7 @@
* Fix Bug #13508 undefined index errors when installing a remote bundle [cellog/tswicegood]
* Fix Bug #13525 pear package-validate is not showing warnings even if there are [dufuz]
* Fix Bug #13559 installing package fails via proxy to virtual-hosted server. [hirose]
+ * Fix Bug #13870 Notice uninstalling or using bundles [cellog]
* Fix Bug #13883 file permissions not preserved on packaging [cellog]
</notes>
<provides type="class" name="OS_Guess"/>
http://cvs.php.net/viewvc.cgi/pear-core/package2.xml?r1=1.430&r2=1.431&diff_format=u
Index: pear-core/package2.xml
diff -u pear-core/package2.xml:1.430 pear-core/package2.xml:1.431
--- pear-core/package2.xml:1.430 Tue May 13 18:03:36 2008
+++ pear-core/package2.xml Tue May 13 18:32:29 2008
@@ -110,6 +110,7 @@
* Fix Bug #13508 undefined index errors when installing a remote bundle [cellog/tswicegood]
* Fix Bug #13525 pear package-validate is not showing warnings even if there are [dufuz]
* Fix Bug #13559 installing package fails via proxy to virtual-hosted server. [hirose]
+ * Fix Bug #13870 Notice uninstalling or using bundles [cellog]
* Fix Bug #13883 file permissions not preserved on packaging [cellog]
</notes>
<contents>
http://cvs.php.net/viewvc.cgi/pear-core/PEAR/Command/Install.php?r1=1.140&r2=1.141&diff_format=u
Index: pear-core/PEAR/Command/Install.php
diff -u pear-core/PEAR/Command/Install.php:1.140 pear-core/PEAR/Command/Install.php:1.141
--- pear-core/PEAR/Command/Install.php:1.140 Tue Jan 29 03:21:01 2008
+++ pear-core/PEAR/Command/Install.php Tue May 13 18:32:29 2008
@@ -16,7 +16,7 @@
* @author Greg Beaver <[email protected]>
* @copyright 1997-2008 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
- * @version CVS: $Id: Install.php,v 1.140 2008/01/29 03:21:01 cellog Exp $
+ * @version CVS: $Id: Install.php,v 1.141 2008/05/13 18:32:29 cellog Exp $
* @link http://pear.php.net/package/PEAR
* @since File available since Release 0.1
*/
@@ -900,7 +900,7 @@
if (isset($parsed['group'])) {
$group = $info->getDependencyGroup($parsed['group']);
if ($group) {
- $installed = &$reg->getInstalledGroup($group);
+ $installed = $reg->getInstalledGroup($group);
if ($installed) {
foreach ($installed as $i => $p) {
$newparams[] = &$installed[$i];