streams/Code/Update/_1237.php

29 lines
517 B
PHP
Raw Normal View History

2020-02-13 05:36:21 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Update;
2020-02-13 05:36:21 +00:00
2021-12-02 23:02:31 +00:00
class _1237
{
2020-02-13 05:36:21 +00:00
2021-12-02 23:02:31 +00:00
public function run()
{
2021-12-03 03:01:39 +00:00
q(
"update app set app_url = '%s' where app_url = '%s' ",
2021-12-02 23:02:31 +00:00
dbesc(z_root() . '/stream'),
dbesc(z_root() . '/network')
);
2021-12-03 03:01:39 +00:00
q(
"update app set app_url = '%s' where app_url = '%s' ",
2021-12-02 23:02:31 +00:00
dbesc('$baseurl/stream'),
dbesc('$baseurl/network')
);
2020-02-13 05:36:21 +00:00
2021-12-02 23:02:31 +00:00
return UPDATE_SUCCESS;
}
2020-02-13 05:36:21 +00:00
2021-12-02 23:02:31 +00:00
public function verify()
{
return true;
}
2020-02-13 05:36:21 +00:00
}