streams/Zotlabs/Update/_1222.php

20 lines
298 B
PHP
Raw Normal View History

2018-11-08 02:24:22 +00:00
<?php
namespace Zotlabs\Update;
2021-12-02 23:02:31 +00:00
class _1222
{
2018-11-08 02:24:22 +00:00
2021-12-02 23:02:31 +00:00
public function run()
{
2018-11-08 02:24:22 +00:00
2021-12-02 23:02:31 +00:00
$r = dbq("UPDATE hubloc set hubloc_id_url = hubloc_hash where hubloc_id_url = '' ");
2018-11-08 02:24:22 +00:00
2021-12-02 23:02:31 +00:00
if ($r) {
return UPDATE_SUCCESS;
} else {
return UPDATE_FAILED;
}
}
2018-11-08 02:24:22 +00:00
}