1
0
mirror of synced 2024-11-22 05:16:09 +03:00
bitrix-module/intaro.retailcrm/update/updater-5.5.0.php
2020-09-29 15:47:16 +03:00

16 lines
290 B
PHP

<?php
function update_5_5_0()
{
if (!class_exists('COption')) {
return;
}
$mid = 'intaro.retailcrm';
$option = 'send_payment_amount';
if (COption::GetOptionString($mid, $option, 'N') !== 'Y') {
COption::SetOptionString($mid, $option, 'Y');
}
}