Unsupported themes aren't displayed anymore

Bu işleme şunda yer alıyor:
Michael Vogel 2014-09-07 10:06:57 +02:00
ebeveyn 0e9c8f6f1a
işleme 871b425c6e
1 değiştirilmiş dosya ile 4 ekleme ve 2 silme

Dosyayı Görüntüle

@ -1179,9 +1179,11 @@ function admin_page_themes(&$a){
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_supported = 1-(intval(file_exists($file . '/unsupported')));
$is_allowed = intval(in_array($f,$allowed_themes));
$themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed);
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);
}
}