Home » File Formats » Archive_Tar » Bug #2488
Syntax error
Details
| Submitted | 2004-10-10 09:25 UTC |
|---|---|
| From | markciliavincenti at gmail dot com |
| Assigned | vblavet |
| Status | Closed |
| Package | Archive_Tar |
| PHP Version | 5.0.1 |
| OS | Windows XP SP1 |
| Roadmaps | (Not assigned) |
Comments
[2004-10-10 09:25 UTC] markciliavincenti at gmail dot com
Description:
------------
In Tar.php v1.19, line 1439 reads:
$this->_error('Extracted file '.$v_header['filename'].' does not have the correct file size \''.filesize($v_filename).'\' ('.$v_header['size'].' expected). Archive may be corrupted.');
this should read:
$this->_error('Extracted file '.$v_header['filename'].' does not have the correct file size \''.filesize($v_header['filename']).'\' ('.$v_header['size'].' expected). Archive may be corrupted.');
since $v_filename does not exist.