Move Gnu.org to https

This commit is contained in:
Alexandre SPANGARO
2019-09-23 21:55:30 +02:00
parent 31cc7e0610
commit 02dbc11f98
2726 changed files with 3341 additions and 3344 deletions

View File

@@ -21,7 +21,7 @@
* @category PHPExcel
* @package PHPExcel_Shared_ZipArchive
* @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @version ##VERSION##, ##DATE##
*/
@@ -138,7 +138,7 @@ class PHPExcel_Shared_ZipArchive
* @param string $fileName Filename for the file in zip archive
* @return string $contents File string contents
*/
public function getFromName($fileName)
public function getFromName($fileName)
{
$list = $this->_zip->listContent();
$listCount = count($list);
@@ -158,7 +158,7 @@ class PHPExcel_Shared_ZipArchive
$filename = substr($fileName, 1);
$list_index = -1;
for ($i = 0; $i < $listCount; ++$i) {
if (strtolower($list[$i]["filename"]) == strtolower($fileName) ||
if (strtolower($list[$i]["filename"]) == strtolower($fileName) ||
strtolower($list[$i]["stored_filename"]) == strtolower($fileName)) {
$list_index = $i;
break;