From: Janusz Dobrowolski Date: Wed, 13 Dec 2017 22:32:31 +0000 (+0100) Subject: System Diagnostics: fixed set of tested themes directories. X-Git-Tag: v2.4.4~44 X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=9eec230b546ec5827a9c2e16570240318107006e System Diagnostics: fixed set of tested themes directories. --- 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);