1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-03-24 14:30:03 +01:00

Fixed "Call to undefined method PharData::add_file()" -> Method is called addFile (camel cased, http://am.php.net/manual/de/phar.addfile.php)

This commit is contained in:
Manuel Bieh 2012-07-12 11:14:40 +02:00
parent d47b996c9f
commit 875b4fbe0e

@ -55,7 +55,7 @@ class Archive {
$archive->addEmptyDir($archivedDir);
}
foreach ($this->files as $realFile => $archivedFile) {
$archive->add_file($realFile, $archivedFile); // very, very slow :/
$archive->addFile($realFile, $archivedFile); // very, very slow :/
}
}