Skip to content
Snippets Groups Projects
Commit 240dd63f authored by Chris Smith's avatar Chris Smith
Browse files

fix incorrectly spelled "feof()" + some comment spelling/grammar

darcs-hash:20090308062316-f07c6-d7090f4706fbecaddb13d028368061c559811840.gz
parent 7965a9cf
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ class TarLib
$fp = @fopen($archive,'rb');
if(!$fp) return -4;
while(!foef($fp)) echo fread($fp,2048);
while(!feof($fp)) echo fread($fp,2048);
}
else
{
......@@ -331,7 +331,7 @@ class TarLib
* contents are only stored in memory. This function should not be used to
* add files to an existing archive, you should use Add() instead.
*
* The FileList supports actually three différents modes :
* The FileList actually supports three different modes :
*
* - You can pass a string containing filenames separated by pipes '|'.
* In this case the file are read from the webserver filesystem and the
......@@ -341,7 +341,7 @@ class TarLib
* filenames. The behaviour for the content reading is the same that a
* '|'ed string.
*
* - The more useful usage is to pass bidimentional arrays, where the
* - The more useful usage is to pass bidimensional arrays, where the
* first element contains the filename and the second contains the file
* contents. You can even add empty folders to the package if the filename
* has a leading '/'. Once again, have a look at the exemples to understand
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment