streams/Zotlabs/Update/_1216.php

20 lines
246 B
PHP
Raw Normal View History

2018-07-29 00:17:12 +00:00
<?php
namespace Zotlabs\Update;
2018-07-30 00:59:40 +00:00
class _1216 {
2018-07-29 00:17:12 +00:00
function run() {
2018-07-30 00:59:40 +00:00
$r = dbq("UPDATE xchan set xchan_name = 'unknown' where xchan_name like '%<%' ");
2018-07-29 00:17:12 +00:00
if($r) {
return UPDATE_SUCCESS;
}
else {
return UPDATE_FAILED;
}
}
}