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

16 lines
347 B
PHP

<?php
namespace Zotlabs\Update;
class _1115
{
public function run()
{
// Introducing email verification. Mark all existing accounts as verified or they
// won't be able to login.
$r = q("update account set account_flags = (account_flags ^ 1) where (account_flags & 1) ");
return UPDATE_SUCCESS;
}
}