]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_import.php
New method generateExtensionInactiveMessage() introduced
[mailer.git] / inc / modules / admin / what-theme_import.php
index 72caa77374bcb5c7c01645e8339f2c85f6cf40f5..8fcec416c3a9f3d9a51cf28bb8bf0b1e650f1cfe 100644 (file)
@@ -41,7 +41,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } elseif (!EXT_IS_ACTIVE('theme')) {
-       addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'theme'));
+       addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveMessage('theme'));
        return;
 }
 
@@ -64,7 +64,7 @@ if (REQUEST_ISSET_POST('theme')) {
                        // Register it ith the exchange
                        SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_themes` (`theme_path`,`theme_active`,`theme_ver`,`theme_name`)
 VALUES ('%s','N','%s','%s')",
-                               array(REQUEST_POST('theme'), $GLOBALS['theme_data']['version'], $GLOBALS['theme_data']['name']), __FILE__, __LINE__);
+                       array(REQUEST_POST('theme'), $GLOBALS['theme_data']['version'], $GLOBALS['theme_data']['name']), __FILE__, __LINE__);
 
                        // Destroy cache
                        rebuildCacheFiles("themes", "them");