aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1216.php
blob: 8890795f15a91a8d0795433c4f27ea7da4483d93 (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 = q("UPDATE xchan set xchan_name = 'unknown' where xchan_name like '%<%' ");

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

}