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

namespace Zotlabs\Update;

class _1181 {
function run() {
	if(\Zotlabs\Lib\System::get_server_role() == 'pro') {
		q("update account set account_level = 5 where true");
	}
	return UPDATE_SUCCESS;
}


}