diff options
author | friendica <info@friendica.com> | 2013-08-29 16:46:22 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-29 16:46:22 -0700 |
commit | 70c0beb857d879b8c2c74ac0922f82b37717c989 (patch) | |
tree | 032175eb350fc3255f408b3734e85b1fdd541174 /mod/settings.php | |
parent | b4bd518e4032661cdfba4e17acdb94e19b23fdd2 (diff) | |
download | volse-hubzilla-70c0beb857d879b8c2c74ac0922f82b37717c989.tar.gz volse-hubzilla-70c0beb857d879b8c2c74ac0922f82b37717c989.tar.bz2 volse-hubzilla-70c0beb857d879b8c2c74ac0922f82b37717c989.zip |
block attempts to set the baseurl to an ip address if it was previously a dns name
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php index 2a3a64581..6b21066b1 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -997,7 +997,7 @@ function settings_content(&$a) { $stpl = get_markup_template('settings.tpl'); - $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false); + $celeb = false; $expire_arr = array( 'days' => array('expire', t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')), |