streams/Zotlabs/Update/_1176.php

21 lines
360 B
PHP
Raw Normal View History

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