streams/Zotlabs/Update/_1237.php

24 lines
388 B
PHP
Raw Normal View History

2020-02-13 05:36:21 +00:00
<?php
namespace Zotlabs\Update;
class _1237 {
function run() {
q("update app set app_url = '%s' where app_url = '%s' ",
dbesc(z_root() . '/stream'),
dbesc(z_root() . '/network')
);
q("update app set app_url = '%s' where app_url = '%s' ",
dbesc('$baseurl/stream'),
dbesc('$baseurl/network')
);
return UPDATE_SUCCESS;
}
function verify() {
return true;
}
}