Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-theme_import.php
index d4aa8faaca40a2b2e32a33328d32ba13ca3d59ef..54fd121edbd476aee5a8a394ba6c798087ee6c51 100644 (file)
@@ -51,7 +51,7 @@ if (isPostRequestElementSet('theme')) {
        // Check if theme is there
        if (!ifThemeExists(postRequestElement('theme'))) {
                // Import theme
-               $inc = sprintf("theme/%s/theme.php", SQL_ESCAPE(postRequestElement('theme')));
+               $inc = sprintf("theme/%s/theme.php", sqlEscapeString(postRequestElement('theme')));
 
                // Is the theme readable?
                if (isIncludeReadable($inc)) {
@@ -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`)
+                       sqlQueryEscaped("INSERT INTO `{?_MYSQL_PREFIX?}_themes` (`theme_path`, `theme_active`, `theme_ver`, `theme_name`)
 VALUES ('%s','N','%s','%s')",
                                array(
                                        postRequestElement('theme'),