From 01776e767d1976663d2c36fd7e6e4431c16c84c1 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 26 Feb 2018 16:41:47 -0800 Subject: update directory fallback servers --- boot.php | 2 -- 1 file changed, 2 deletions(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 9b09f11eb..badc794b1 100755 --- a/boot.php +++ b/boot.php @@ -84,8 +84,6 @@ define ( 'DIRECTORY_FALLBACK_MASTER', 'https://gravizot.de'); $DIRECTORY_FALLBACK_SERVERS = array( 'https://hubzilla.zottel.net', - 'https://my.federated.social', - //'https://hubzilla.nl', 'https://gravizot.de' ); -- cgit v1.2.3 From 6c37a389807c28198a9eefae9dc479bc714981c3 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 26 Feb 2018 21:50:17 -0800 Subject: fix public stream app permission check to match the recent fixes to the Module --- boot.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index dbc5e6dcc..0c3db1531 100755 --- a/boot.php +++ b/boot.php @@ -1686,10 +1686,15 @@ function remote_channel() { function can_view_public_stream() { - if((observer_prohibited(true)) - || (! (intval(get_config('system','open_pubstream',1))) && get_observer_hash())) { + if(observer_prohibited(true)) { return false; } + + if(! (intval(get_config('system','open_pubstream',1)))) { + if(! get_observer_hash()) { + return false; + } + } $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); -- cgit v1.2.3 From 58ee2a49fa23bdc0de6c6cac59992d3a6a9c955e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 27 Feb 2018 10:43:19 +0100 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 0c3db1531..ae62b6f44 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.2RC' ); +define ( 'STD_VERSION', '3.3' ); define ( 'ZOT_REVISION', '1.3' ); define ( 'DB_UPDATE_VERSION', 1205 ); -- cgit v1.2.3 From 6593dff9f5b07c76037fa0afc7357089306195c4 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 28 Feb 2018 10:21:22 +0100 Subject: missed one index in the last update --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index ae62b6f44..2c937cf57 100755 --- a/boot.php +++ b/boot.php @@ -53,7 +53,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '3.3' ); define ( 'ZOT_REVISION', '1.3' ); -define ( 'DB_UPDATE_VERSION', 1205 ); +define ( 'DB_UPDATE_VERSION', 1206 ); define ( 'PROJECT_BASE', __DIR__ ); -- cgit v1.2.3