streams/Zotlabs/Update/_1224.php

14 lines
217 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Update;
2021-12-02 23:02:31 +00:00
class _1224
{
2021-12-02 23:02:31 +00:00
public function run()
{
q("update abook set abook_closeness = 80 where abook_closeness = 0 and abook_self = 0");
return UPDATE_SUCCESS;
}
2021-12-03 03:01:39 +00:00
}