From 5b5f0666f9addc4b2c0cd69495d9fe8f76011ee2 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 5 May 2015 03:59:51 -0700 Subject: second pass name change --- mod/home.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mod/home.php') diff --git a/mod/home.php b/mod/home.php index 7bb138d2e..5cd2fd6de 100644 --- a/mod/home.php +++ b/mod/home.php @@ -50,7 +50,7 @@ function home_content(&$a, $update = 0, $load = false) { if(get_config('system','projecthome')) { $o .= file_get_contents('assets/home.html'); $a->page['template'] = 'full'; - $a->page['title'] = t('Red Matrix - "The Network"'); + $a->page['title'] = t('Hubzilla - "The Network"'); return $o; } -- cgit v1.2.3 From 25b599a4bd831f175572c2388754e8734a255d77 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 6 May 2015 21:03:33 -0700 Subject: convert ITEM_WALL from bitfield to standalone --- mod/home.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mod/home.php') diff --git a/mod/home.php b/mod/home.php index 5cd2fd6de..85c89a623 100644 --- a/mod/home.php +++ b/mod/home.php @@ -190,7 +190,7 @@ function home_content(&$a, $update = 0, $load = false) { if(get_config('system','site_firehose')) { require_once('include/security.php'); - $uids = " and item.uid in ( " . stream_perms_api_uids(PERMS_PUBLIC) . " ) and item_private = 0 and (item_flags & " . intval(ITEM_WALL) . " ) > 0 "; + $uids = " and item.uid in ( " . stream_perms_api_uids(PERMS_PUBLIC) . " ) and item_private = 0 and item_wall = 1 "; } else { $sys = get_sys_channel(); -- cgit v1.2.3