]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-repair_lang.php
Code style changed, ext-user continued:
[mailer.git] / inc / modules / admin / what-repair_lang.php
index 67bafa3f68889ddce4ada6be411e900085e71d99..def55929647f347bdcc896d1d36a268a7ed7afa9 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Get a list with current language files
-$langFiles = getArrayFromDirectory('inc/language/', '', false, false, array('_de.php'), '.php', '@(\.|\.\.)$@', true, getCurrentLanguage());
+$langFiles = getArrayFromDirectory('inc/language/', '', FALSE, FALSE, array('_de.php'), '.php', '@(\.|\.\.)$@', TRUE, getCurrentLanguage());
 
 // By default nothing is checked, which is isn't right...
 $OUT = '';
@@ -83,7 +83,7 @@ foreach ($validLanguages as $lang) {
                                );
 
                                // Compares, all fine
-                               $OUT .= loadTemplate('admin_repair_lang_row_compares', true, $content);
+                               $OUT .= loadTemplate('admin_repair_lang_row_compares', TRUE, $content);
                        } else {
                                // Generate difference output only if count is smaller/equals 100 entries
                                $diffContent = '<ul>';
@@ -106,7 +106,7 @@ foreach ($validLanguages as $lang) {
                                );
 
                                // Compares, all fine
-                               $OUT .= loadTemplate('admin_repair_lang_row_diff', true, $content);
+                               $OUT .= loadTemplate('admin_repair_lang_row_diff', TRUE, $content);
                        }
                } else {
                        // Not readable, prepare content
@@ -116,7 +116,7 @@ foreach ($validLanguages as $lang) {
                        );
 
                        // Load template
-                       $OUT .= loadTemplate('admin_repair_lang_row_404', true, $content);
+                       $OUT .= loadTemplate('admin_repair_lang_row_404', TRUE, $content);
                }
        } // END - foreach
 } // END - foreach
@@ -130,7 +130,7 @@ $content = array(
 );
 
 // Load main template
-loadTemplate('admin_repair_lang', false, $content);
+loadTemplate('admin_repair_lang', FALSE, $content);
 
 // [EOF]
 ?>