From: Roland Häder Date: Tue, 31 Jan 2017 07:57:16 +0000 (+0100) Subject: added curly braces + removed more useless intval() calls on file_exists() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aeb0ed32c82b5587a410d826151bed7704303f00;p=friendica.git added curly braces + removed more useless intval() calls on file_exists() Signed-off-by: Roland Häder --- diff --git a/mod/admin.php b/mod/admin.php index 8227252c60..334f8ea6a6 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -1707,9 +1707,9 @@ function admin_page_themes(App $a) { continue; } - $is_experimental = intval(file_exists($file.'/experimental')); - $is_supported = 1-(intval(file_exists($file.'/unsupported'))); - $is_allowed = intval(in_array($f,$allowed_themes)); + $is_experimental = file_exists($file.'/experimental'); + $is_supported = (!file_exists($file.'/unsupported')); + $is_allowed = in_array($f,$allowed_themes); if ($is_allowed OR $is_supported OR get_config("system", "show_unsupported_themes")) { $themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed);