streams/Code/Update/_1254.php
2022-02-15 20:08:28 -08:00

23 lines
351 B
PHP

<?php
namespace Code\Update;
use Code\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;
}
}