Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Commit 634f1a3

Browse files
fixing a bug if php notices are enabled
1 parent a733ba1 commit 634f1a3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

index.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
*
88
* @author Andreas Tasch, at[tec], attec.at; Stefan Boguth, Boguth.org
99
* @license GNU GPL v3
10-
* @version 0.2.1
10+
* @version 0.2.2
1111
*/
12-
define('VERSION', '0.2.1');
12+
define('VERSION', '0.2.2');
1313
$timestart = microtime(TRUE);
1414
$GLOBALS['status'] = array();
1515
$unzipper = new Unzipper;
@@ -37,6 +37,8 @@
3737
else {
3838
$GLOBALS['status'] = array('error' => 'Kein Pfad angegeben!');
3939
}
40+
} else {
41+
$setexp = false;
4042
}
4143
$timeend = microtime(TRUE);
4244
$time = $timeend - $timestart;

0 commit comments

Comments
 (0)