From ab0eab49e866e29b1c1b5ef58897c6a446d24864 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Mar 2014 20:28:04 -0800 Subject: start new connections out with even more sane defaults than before by pre-filling the connedit form page. This still lets them change things before any damage has been done or before any privacy has leaked, but should reduce the number of new connections that can't comment. --- mod/connedit.php | 6 ++++++ mod/follow.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'mod') diff --git a/mod/connedit.php b/mod/connedit.php index c6f64ccfc..b9b7fcce3 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -177,7 +177,13 @@ function connedit_content(&$a) { $sort_type = 0; $o = ''; + // this triggers some javascript to set Full Sharing by default after + // completing a "follow" - which can be changed to something else before + // form submission, but this gives us something useable + if($_GET['follow'] == 1) { + $o .= ''; + } if(! local_user()) { notice( t('Permission denied.') . EOL); return login(); diff --git a/mod/follow.php b/mod/follow.php index 962bb71a7..4fcb5bda3 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -30,7 +30,7 @@ function follow_init(&$a) { proc_run('php','include/onepoll.php',$result['abook']['abook_id']); - goaway(z_root() . '/connedit/' . $result['abook']['abook_id']); + goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1); } -- cgit v1.2.3