streams/Zotlabs/Update/_1254.php
2021-12-03 14:01:39 +11:00

23 lines
357 B
PHP

<?php
namespace Zotlabs\Update;
use Zotlabs\Lib\Config;
class _1254
{
public function run()
{
q(
"UPDATE channel SET channel_notifyflags = channel_notifyflags + %d WHERE true",
intval(NOTIFY_RESHARE)
);
return UPDATE_SUCCESS;
}
public function verify()
{
return true;
}
}