fixed upload
This commit is contained in:
parent
e672635bb0
commit
d92b275128
|
@ -3,6 +3,7 @@
|
|||
- updated Italian translation
|
||||
- fixed bugs:
|
||||
-> fixed problems with case-insensitive DNs
|
||||
-> file upload did not work when max_execution_time=0 (1367957)
|
||||
|
||||
|
||||
16.11.2005 0.5.2
|
||||
|
|
|
@ -63,6 +63,7 @@ if (($_SESSION['mass_counter'] < sizeof($accounts)) || !isset($_SESSION['mass_po
|
|||
$startTime = time();
|
||||
$maxTime = get_cfg_var('max_execution_time') - 5;
|
||||
if ($maxTime > 60) $maxTime = 60;
|
||||
if ($maxTime <= 0) $maxTime = 60;
|
||||
$refreshTime = $maxTime + 7;
|
||||
echo "<meta http-equiv=\"refresh\" content=\"" . $refreshTime . "; URL=massDoUpload.php\">\n";
|
||||
echo "</head>\n<body>\n";
|
||||
|
|
Loading…
Reference in New Issue