]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_import.php
AJAX installation is 'basicly finished' :) Plus I threw in a small christmas present...
[mailer.git] / inc / modules / admin / what-theme_import.php
index 7388ea48ea562acc5c0fe4099bbdb01cf4e6ec76..5c8671e86f6db8d3e90c7705882554c95a1f2815 100644 (file)
@@ -59,7 +59,7 @@ if (isPostRequestElementSet('theme')) {
                        loadInclude($inc);
 
                        // Register it ith the exchange
-                       SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_themes` (`theme_path`,`theme_active`,`theme_ver`,`theme_name`)
+                       SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_themes` (`theme_path`, `theme_active`, `theme_ver`, `theme_name`)
 VALUES ('%s','N','%s','%s')",
                                array(
                                        postRequestElement('theme'),
@@ -96,7 +96,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,7 +127,7 @@ foreach ($themes['theme_unix'] as $key => $unix) {
        // Check if current theme is already imported or not
        if (!ifThemeExists($unix)) {
                // Theme not installed
-               $formContent = loadTemplate('admin_import_theme_form', true, $unix);
+               $formContent = loadTemplate('admin_import_theme_form', TRUE, $unix);
        } // END - if
 
        // Prepare content
@@ -142,16 +142,16 @@ foreach ($themes['theme_unix'] as $key => $unix) {
        );
 
        // Add row template
-       $OUT .= loadTemplate('admin_import_theme_row', true, $content);
+       $OUT .= loadTemplate('admin_import_theme_row', TRUE, $content);
 } // END - foreach
 
 if (empty($OUT)) {
        // No themes found???
-       $OUT .= loadTemplate('admin_import_theme_none', true, displayMessage('{--ADMIN_NO_THEMES_FOUND--}', true));
+       $OUT .= loadTemplate('admin_import_theme_none', TRUE, displayMessage('{--ADMIN_NO_THEMES_FOUND--}', TRUE));
 } // END - if
 
 // Load template
-loadTemplate('admin_import_theme', false, $OUT);
+loadTemplate('admin_import_theme', FALSE, $OUT);
 
 // [EOF]
 ?>