cvs: pear /Net_FTP/Net FTP.php
[email protected] ("Jorrit Schippers")
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvsjschippers1208896414@cvsserver> |
jschippers Tue Apr 22 20:33:34 2008 UTC
Modified files:
/pear/Net_FTP/Net FTP.php
Log:
Made file list matching more strict
http://cvs.php.net/viewvc.cgi/pear/Net_FTP/Net/FTP.php?r1=1.61&r2=1.62&diff_format=u
Index: pear/Net_FTP/Net/FTP.php
diff -u pear/Net_FTP/Net/FTP.php:1.61 pear/Net_FTP/Net/FTP.php:1.62
--- pear/Net_FTP/Net/FTP.php:1.61 Tue Apr 22 20:03:41 2008
+++ pear/Net_FTP/Net/FTP.php Tue Apr 22 20:33:34 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.61 2008/04/22 20:03:41 jschippers Exp $
+ * @version CVS: $Id: FTP.php,v 1.62 2008/04/22 20:33:34 jschippers Exp $
* @link http://pear.php.net/package/Net_FTP
* @since File available since Release 0.0.1
*/
@@ -694,7 +694,7 @@
$this->_ls_match = array(
'unix' => array(
- 'pattern' => '/(?:(d)|.)([rwxts-]+)\s+(\w+)\s+([\w\d-()?]+)\s+'.
+ 'pattern' => '/(?:(d)|.)([rwxts-]{9})\s+(\w+)\s+([\w\d-()?]+)\s+'.
'([\w\d-()?]+)\s+(\w+)\s+(\S+\s+\S+\s+\S+)\s+(.+)/',
'map' => array(
'is_dir' => 1,