mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
9 lines
199 B
PHP
9 lines
199 B
PHP
<?php
|
|
|
|
// crmv@189690
|
|
global $adb, $table_prefix;
|
|
$adb->pquery(
|
|
"UPDATE {$table_prefix}_cronjobs SET repeat_sec = ? WHERE cronname = ? AND repeat_sec = ?",
|
|
array(3600,'ModNotifications', 7200)
|
|
);
|