cvs: pear(MAINT_1_3_4) /Net_FTP generate_package_xml.php /Net_FTP/Net FTP.php
[email protected] ("Jorrit Schippers")
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvsjschippers1208894630@cvsserver> |
jschippers Tue Apr 22 20:03:50 2008 UTC
Modified files: (Branch: MAINT_1_3_4)
/pear/Net_FTP generate_package_xml.php
/pear/Net_FTP/Net FTP.php
Log:
Fixed Bug #13496: set bit not supported
http://cvs.php.net/viewvc.cgi/pear/Net_FTP/generate_package_xml.php?r1=1.15.2.1&r2=1.15.2.2&diff_format=u
Index: pear/Net_FTP/generate_package_xml.php
diff -u pear/Net_FTP/generate_package_xml.php:1.15.2.1 pear/Net_FTP/generate_package_xml.php:1.15.2.2
--- pear/Net_FTP/generate_package_xml.php:1.15.2.1 Sun Jan 13 22:05:57 2008
+++ pear/Net_FTP/generate_package_xml.php Tue Apr 22 20:03:50 2008
@@ -12,7 +12,7 @@
$cvsdir = '/cvs/pear/';
$packagedir = $cvsdir . 'Net_FTP/';
-$current_version = '1.3.5';
+$current_version = '1.3.6';
$current_stability = 'stable';
$summary = 'Net_FTP provides an OO interface to the PHP FTP functions plus some additions';
@@ -25,7 +25,7 @@
for example the view of a progress bar.';
$current_notes =
-'* Fixed Bug #12840: Fix compliance with PHP 4 (broken since 1.3.3)';
+'* Fixed Bug #13496: set bit not supported';
PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'dumpError');
http://cvs.php.net/viewvc.cgi/pear/Net_FTP/Net/FTP.php?r1=1.53.2.3&r2=1.53.2.4&diff_format=u
Index: pear/Net_FTP/Net/FTP.php
diff -u pear/Net_FTP/Net/FTP.php:1.53.2.3 pear/Net_FTP/Net/FTP.php:1.53.2.4
--- pear/Net_FTP/Net/FTP.php:1.53.2.3 Tue Jan 8 18:35:43 2008
+++ pear/Net_FTP/Net/FTP.php Tue Apr 22 20:03:50 2008
@@ -20,7 +20,7 @@
* @author Jorrit Schippers <[email protected]>
* @copyright 1997-2008 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
- * @version CVS: $Id: FTP.php,v 1.53.2.3 2008/01/08 18:35:43 jschippers Exp $
+ * @version CVS: $Id: FTP.php,v 1.53.2.4 2008/04/22 20:03:50 jschippers Exp $
* @link http://pear.php.net/package/Net_FTP
* @since File available since Release 0.0.1
*/
@@ -632,7 +632,7 @@
$this->_ls_match = array(
'unix' => array(
- 'pattern' => '/(?:(d)|.)([rwxt-]+)\s+(\w+)\s+([\w\d-()?]+)\s+'.
+ 'pattern' => '/(?:(d)|.)([rwxts-]+)\s+(\w+)\s+([\w\d-()?]+)\s+'.
'([\w\d-()?]+)\s+(\w+)\s+(\S+\s+\S+\s+\S+)\s+(.+)/',
'map' => array(
'is_dir' => 1,