streams/Zotlabs/Update/_1176.php

21 lines
276 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Update;
2021-12-02 22:33:36 +00:00
use Zotlabs\Lib\IConfig;
class _1176 {
function run() {
$r = q("select * from item_id where true");
if($r) {
foreach($r as $rr) {
2021-12-02 22:33:36 +00:00
IConfig::Set($rr['iid'],'system',$rr['service'],$rr['sid'],true);
}
}
return UPDATE_SUCCESS;
}
}