mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +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')
|
|
);
|