diff options
author | friendica <info@friendica.com> | 2012-11-07 14:09:51 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-07 14:09:51 -0800 |
commit | cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4 (patch) | |
tree | c1c97a545821135913bad018f039a505c8de7396 /mod/admin.php | |
parent | 7501717d2e844fefb142cbbdac2bca5ab4d77754 (diff) | |
download | volse-hubzilla-cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4.tar.gz volse-hubzilla-cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4.tar.bz2 volse-hubzilla-cc8a11eee2c0f8c190ac421542845bfc3ae0b5c4.zip |
allow theme selection
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mod/admin.php b/mod/admin.php index 90eabd1ef..367ddcf7f 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -260,7 +260,7 @@ function admin_page_site_post(&$a){ $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False); $diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? True : False); $ssl_policy = ((x($_POST,'ssl_policy')) ? intval($_POST['ssl_policy']) : 0); - +/* if($ssl_policy != intval(get_config('system','ssl_policy'))) { if($ssl_policy == SSL_POLICY_FULL) { q("update `contact` set @@ -301,6 +301,7 @@ function admin_page_site_post(&$a){ ); } } +*/ set_config('system','ssl_policy',$ssl_policy); set_config('system','delivery_interval',$delivery_interval); set_config('system','poll_interval',$poll_interval); @@ -874,8 +875,8 @@ function admin_page_themes(&$a){ if($files) { foreach($files as $file) { $f = basename($file); - $is_experimental = intval(file_exists($file . '/experimental')); - $is_supported = 1-(intval(file_exists($file . '/unsupported'))); // Is not used yet + $is_experimental = intval(file_exists($file . '/.experimental')); + $is_supported = 1-(intval(file_exists($file . '/.unsupported'))); // Is not used yet $is_allowed = intval(in_array($f,$allowed_themes)); $themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed); } |