aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Update/_1122.php
blob: 903e3aaeb74c03168922b99bbd496651a27e0d00 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                              
<?php

namespace Zotlabs\Update;

class _1122 {
function run() {
	$r = q("update site set site_realm = '%s' where true",
		dbesc(DIRECTORY_REALM)
	);
	if($r)
		return UPDATE_SUCCESS;
	return UPDATE_FAILED;
}


}