aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1115.php
blob: 4edf63b85a0411296de0c3f783a4977075f9e973 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Zotlabs\Update;

class _1115 {
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;
}


}