cvs: pear-core / package-PEAR.xml package2.xml /PEAR Config.php
[email protected] ("Greg Beaver")
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <cvscellog1210642337@cvsserver> |
cellog Tue May 13 01:32:17 2008 UTC
Modified files:
/pear-core package2.xml package-PEAR.xml
/pear-core/PEAR Config.php
Log:
* Fix Bug #13123 pear config-set works, but pecl config-set does not [cellog]
http://cvs.php.net/viewvc.cgi/pear-core/package2.xml?r1=1.426&r2=1.427&diff_format=u
Index: pear-core/package2.xml
diff -u pear-core/package2.xml:1.426 pear-core/package2.xml:1.427
--- pear-core/package2.xml:1.426 Mon May 12 23:43:21 2008
+++ pear-core/package2.xml Tue May 13 01:32:17 2008
@@ -101,9 +101,10 @@
* Fix Bug #13031 PEAR fails to authenticate when doing upgrade-all on non-default channel [timj]
* Fix Bug #13033 Signature to PEAR_REST_XX::listAll() changes between REST1.0 and 1.1 [timj]
* Fix Bug #13059 Invalid release type causes Undefined Property notice [gwynne, dufuz]
+ * Fix Bug #13123 pear config-set works, but pecl config-set does not [cellog]
* Fix Bug #13323 Deprecated errors in many places [hubbitus]
* Fix Bug #13315 Upgrading of package fails if more than one file of role=cfg has changed [timj]
- * Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work
+ * Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work [cellog]
* Fix Bug #13484 pear package brings up warnings [dufuz]
* Fix Bug #13485 pear package-validate brings up ASCII issues [dufuz]
* Fix Bug #13525 pear package-validate is not showing warnings even if there are [dufuz]
http://cvs.php.net/viewvc.cgi/pear-core/package-PEAR.xml?r1=1.526&r2=1.527&diff_format=u
Index: pear-core/package-PEAR.xml
diff -u pear-core/package-PEAR.xml:1.526 pear-core/package-PEAR.xml:1.527
--- pear-core/package-PEAR.xml:1.526 Mon May 12 23:43:21 2008
+++ pear-core/package-PEAR.xml Tue May 13 01:32:17 2008
@@ -96,9 +96,10 @@
* Fix Bug #13031 PEAR fails to authenticate when doing upgrade-all on non-default channel [timj]
* Fix Bug #13033 Signature to PEAR_REST_XX::listAll() changes between REST1.0 and 1.1 [timj]
* Fix Bug #13059 Invalid release type causes Undefined Property notice [gwynne, dufuz]
+ * Fix Bug #13123 pear config-set works, but pecl config-set does not [cellog]
* Fix Bug #13323 Deprecated errors in many places [hubbitus]
* Fix Bug #13315 Upgrading of package fails if more than one file of role=cfg has changed [timj]
- * Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work
+ * Fix Bug #13434 Breaks on HPUX - "find () -ls" doesn't work [cellog]
* Fix Bug #13484 pear package brings up warnings [dufuz]
* Fix Bug #13485 pear package-validate brings up ASCII issues [dufuz]
* Fix Bug #13525 pear package-validate is not showing warnings even if there are [dufuz]
http://cvs.php.net/viewvc.cgi/pear-core/PEAR/Config.php?r1=1.144&r2=1.145&diff_format=u
Index: pear-core/PEAR/Config.php
diff -u pear-core/PEAR/Config.php:1.144 pear-core/PEAR/Config.php:1.145
--- pear-core/PEAR/Config.php:1.144 Thu Jan 3 20:26:34 2008
+++ pear-core/PEAR/Config.php Tue May 13 01:32:17 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: Config.php,v 1.144 2008/01/03 20:26:34 cellog Exp $
+ * @version CVS: $Id: Config.php,v 1.145 2008/05/13 01:32:17 cellog Exp $
* @link http://pear.php.net/package/PEAR
* @since File available since Release 0.1
*/
@@ -299,7 +299,7 @@
var $_channelConfigInfo = array(
'php_dir', 'ext_dir', 'doc_dir', 'bin_dir', 'data_dir', 'cfg_dir',
'test_dir', 'www_dir', 'php_bin', 'username', 'password', 'verbose',
- 'preferred_state', 'umask', 'preferred_mirror',
+ 'preferred_state', 'umask', 'preferred_mirror', 'php_ini'
);
/**