This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Update/_1216.php
2018-07-29 17:59:40 -07:00

20 lines
246 B
PHP

<?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;
}
}
}