mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
9 lines
193 B
PHP
9 lines
193 B
PHP
<?php
|
|
|
|
// crmv@186732
|
|
global $adb, $table_prefix;
|
|
$adb->pquery(
|
|
"UPDATE {$table_prefix}_cronjobs SET timeout = ?, max_attempts = ? WHERE cronname = ?",
|
|
array(600,0,'CleanMessageStorage')
|
|
);
|