X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=2234042abff8d121b4cd1c2cc88ba51f9ecde290;hb=16e8327d8b9ac2f02cf49c6179e7148fc32b1066;hp=3e5d37b154d0ea50daea5a29a1dd9895d14a210c;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 3e5d37b154..2234042abf 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -79,7 +79,7 @@ $themes = array( ); // Read directory "themes" -$includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images')); +$includes = getArrayFromDirectory('theme/', '', FALSE, TRUE, array('css', 'images')); // Walk through all entries and add it foreach ($includes as $inc) { @@ -127,20 +127,20 @@ foreach ($themes['theme_unix'] as $key => $unix) { ); // Load row template - $OUT .= loadTemplate('member_themes_row', true, $content); + $OUT .= loadTemplate('member_themes_row', TRUE, $content); } // END - foreach if (empty($OUT)) { // No themes found??? $OUT = ' - ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . ' + ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . ' '; } // END - if // Load template -loadTemplate('member_themes', false, $OUT); +loadTemplate('member_themes', FALSE, $OUT); // [EOF] ?>