diff options
author | friendica <info@friendica.com> | 2014-03-07 20:28:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-07 20:28:04 -0800 |
commit | ab0eab49e866e29b1c1b5ef58897c6a446d24864 (patch) | |
tree | a47417a06a935bc0cb91ada8150f86b219447a40 /mod | |
parent | 3b0b59dfad2c69539e018e43b9ee946a9d9993bc (diff) | |
download | volse-hubzilla-ab0eab49e866e29b1c1b5ef58897c6a446d24864.tar.gz volse-hubzilla-ab0eab49e866e29b1c1b5ef58897c6a446d24864.tar.bz2 volse-hubzilla-ab0eab49e866e29b1c1b5ef58897c6a446d24864.zip |
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.
Diffstat (limited to 'mod')
-rw-r--r-- | mod/connedit.php | 6 | ||||
-rw-r--r-- | mod/follow.php | 2 |
2 files changed, 7 insertions, 1 deletions
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 .= '<script>var after_following = 1;</script>'; + } 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); } |