]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-themes.php
Code style changed, ext-user continued:
[mailer.git] / inc / modules / member / what-themes.php
index 3e5d37b154d0ea50daea5a29a1dd9895d14a210c..2234042abff8d121b4cd1c2cc88ba51f9ecde290 100644 (file)
@@ -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 = '<tr>
   <td colspan="5" class="bottom" height="80">
-    ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . '
+    ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . '
   </td>
 </tr>';
 } // END - if
 
 // Load template
-loadTemplate('member_themes', false, $OUT);
+loadTemplate('member_themes', FALSE, $OUT);
 
 // [EOF]
 ?>