mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
12 lines
291 B
PHP
12 lines
291 B
PHP
<?php
|
|
global $adb, $table_prefix;
|
|
|
|
// crmv@188277
|
|
|
|
// update processes filters
|
|
$modInst = Vtecrm_Module::getInstance('Processes');
|
|
if ($modInst) {
|
|
$adb->pquery("UPDATE {$table_prefix}_customview SET setmobile = 1 WHERE viewname = ? AND entitytype = ?", array('Pending', 'Processes'));
|
|
}
|
|
|