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

namespace Zotlabs\Update;

class _1101 {
function run() {
	$r = q("update updates set ud_flags = 2 where ud_flags = (-1)");
	$r = q("update updates set ud_flags = 0 where ud_flags = 4096");
	return UPDATE_SUCCESS;
}


}