GX-Bug #42085 » Variable_für_den_Timeout.patch
| src/system/classes/csv/CSVControl.inc.php (revision ) | ||
|---|---|---|
| 19 | 19 |
protected $v_coo_csv_source = null; |
| 20 | 20 |
protected $v_export_file_handle = false; |
| 21 | 21 |
protected $coo_properties_data_agent = null; |
| 22 |
protected $v_timeout = 20; |
|
| 22 | 23 | |
| 23 | 24 |
static public function get_instance() |
| 24 | 25 |
{
|
| ... | ... | |
| 491 | 492 |
} |
| 492 | 493 | |
| 493 | 494 |
$t_actual_time = microtime(true); |
| 494 |
if( (int)($t_actual_time - $t_export_start) > 20 )
|
|
| 495 |
if( (int)($t_actual_time - $t_export_start) > $this->v_timeout )
|
|
| 495 | 496 |
{
|
| 496 | 497 |
$t_run_export = false; |
| 497 | 498 |
} |