diff options
author | redmatrix <git@macgirvin.com> | 2016-02-11 15:24:21 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-11 15:24:21 -0800 |
commit | 55515a25d179e75bf88061b83eb102712eefdb4c (patch) | |
tree | 678026f3ebb39c6f8f9c0379916a86f8c2c51caf /mod/setup.php | |
parent | 83b5adf1944511cf8bd8ebd5523f8743f42da4be (diff) | |
download | volse-hubzilla-55515a25d179e75bf88061b83eb102712eefdb4c.tar.gz volse-hubzilla-55515a25d179e75bf88061b83eb102712eefdb4c.tar.bz2 volse-hubzilla-55515a25d179e75bf88061b83eb102712eefdb4c.zip |
guest photo upload failing when js_upload is in use due to non-existent acl parameters
Diffstat (limited to 'mod/setup.php')
-rwxr-xr-x | mod/setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/setup.php b/mod/setup.php index 9bcbabbc5..6dc141702 100755 --- a/mod/setup.php +++ b/mod/setup.php @@ -365,7 +365,7 @@ function setup_content(&$a) { '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.')), '$siteurl' => array('siteurl', t('Website URL'), z_root(), t('Please use SSL (https) URL if available.')), - '$advanced' => array('advanced', t('Enable $Projectname <strong>advanced</strong> features?'), 0, t('Some advanced features, while useful - may be best suited for technically proficient audiences')), + '$advanced' => array('advanced', t('Enable $Projectname <strong>advanced</strong> features?'), 1, t('Some advanced features, while useful - may be best suited for technically proficient audiences')), '$timezone' => array('timezone', t('Please select a default timezone for your website'), $timezone, '', get_timezones()), |