mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 08:38:46 +00:00
6 lines
172 B
PHP
6 lines
172 B
PHP
<?php
|
|
global $adb, $table_prefix;
|
|
$adb->pquery(
|
|
"UPDATE {$table_prefix}_cronjobs SET timeout = ?, repeat_sec = ? WHERE cronname = ?",
|
|
array(300,120,'ScheduledImport')
|
|
);
|