diff options
author | friendica <info@friendica.com> | 2013-02-12 02:02:35 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-12 02:02:35 -0800 |
commit | 3ee75a795a471573de307d7be70bfb61bf1d63fa (patch) | |
tree | babacf0dcbcdd3ee373b1bf6eb323c8bd455bd53 /mod/settings.php | |
parent | e7170cb5134677eb4352f1852b818aef73bfdb0a (diff) | |
download | volse-hubzilla-3ee75a795a471573de307d7be70bfb61bf1d63fa.tar.gz volse-hubzilla-3ee75a795a471573de307d7be70bfb61bf1d63fa.tar.bz2 volse-hubzilla-3ee75a795a471573de307d7be70bfb61bf1d63fa.zip |
Whinging whining stupid fucks.
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mod/settings.php b/mod/settings.php index 7bfc90f55..da6cf709c 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -335,8 +335,6 @@ function settings_post(&$a) { $allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0); $publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0); - $net_publish = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0); - $old_visibility = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0); $page_flags = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0); $blockwall = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted! $blocktags = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted! @@ -959,11 +957,6 @@ function settings_content(&$a) { )); - - - $invisible = ((! $profile['publish']) ? true : false); - - $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/channel/' . $nickname : ''); $tpl_addr = get_markup_template("settings_nick_set.tpl"); @@ -1022,7 +1015,6 @@ function settings_content(&$a) { '$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), intval($channel['channel_max_friend_req']) , t('May reduce spam activity')), '$permissions' => t('Default Post Permissions'), '$permdesc' => t("\x28click to open/close\x29"), - '$visibility' => $profile['net-publish'], '$aclselect' => populate_acl($a->user,$celeb), '$suggestme' => $suggestme, |