From 9eec230b546ec5827a9c2e16570240318107006e Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Wed, 13 Dec 2017 23:32:31 +0100 Subject: [PATCH 1/1] System Diagnostics: fixed set of tested themes directories. --- includes/system_tests.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/system_tests.inc b/includes/system_tests.inc index ab9aac21..50add593 100644 --- a/includes/system_tests.inc +++ b/includes/system_tests.inc @@ -378,8 +378,8 @@ function tst_extconfig($install) $themedir = opendir($fname); while (false !== ($fname = readdir($themedir))) { - if ($fname!='.' && $fname!='..' && $fname!='CVS' && is_dir($path_to_root.'/themes/'.$fname) - && !in_array($fname, array('aqua', 'cool', 'default'))) + if ($fname!='.' && $fname!='..' && is_dir($path_to_root.'/themes/'.$fname) + && !in_array($fname, array('canvas', 'default', 'dropdown'))) { $test['test'][] = $fname; $test['result'] = is_writable($path_to_root.'/themes/'.$fname); -- 2.30.2