aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-24 18:55:07 -0700
committerfriendica <info@friendica.com>2013-08-24 18:55:07 -0700
commit1c17d1b69c2b3db9f9c3ffd0dee4ca9ea57af05a (patch)
treeb7312c1e8103822ba1655f4145ba5a91d8dedef6 /boot.php
parent4925f7fc53e5971541e1fcfcbd38597a7536a2e8 (diff)
downloadvolse-hubzilla-1c17d1b69c2b3db9f9c3ffd0dee4ca9ea57af05a.tar.gz
volse-hubzilla-1c17d1b69c2b3db9f9c3ffd0dee4ca9ea57af05a.tar.bz2
volse-hubzilla-1c17d1b69c2b3db9f9c3ffd0dee4ca9ea57af05a.zip
start timestamping hubloc connections so we can eventually remove dead ones
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index c0911cc19..f27410d3e 100755
--- a/boot.php
+++ b/boot.php
@@ -1284,7 +1284,7 @@ function fix_system_urls($oldurl,$newurl) {
// that they can clean up their hubloc tables (this includes directories).
// It's a very expensive operation so you don't want to have to do it often or after your site gets to be large.
- $r = q("select * from xchan left join channel on channel_hash = xchan_hash where xchan_url like '%s'",
+ $r = q("select xchan.*, channel.* from xchan left join channel on channel_hash = xchan_hash where xchan_url like '%s'",
dbesc($oldurl . '%')
);
if($r) {
@@ -1317,7 +1317,10 @@ function fix_system_urls($oldurl,$newurl) {
dbesc($newurl . '/post'),
dbesc($rr['xchan_hash']),
dbesc($oldurl)
- );
+ );
+
+ proc_run('php', 'include/notifier.php', 'refresh_all', $rr['channel_id']);
+
}
}
}