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

namespace Zotlabs\Update;

class _1129 {
function run() {
	$r = q("update hubloc set hubloc_network = 'zot' where hubloc_network = ''");
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}