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

namespace Zotlabs\Update;

class _1216 {

	function run() {

		$r = dbq("UPDATE xchan set xchan_name = 'unknown' where xchan_name like '%<%' ");

		if($r) {
			return UPDATE_SUCCESS;
		}
		else {        
			return UPDATE_FAILED;
		}
	}

}