X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=fd04a906852bc0ab7962e1408d913f10a8abfc65;hb=ac329bd605c5ebe59b06129630cebefb34856d26;hp=c3665f9881913dd9487e66fb3db205dca33b5389;hpb=0f3a135204757cc8750262871c8e62c42300acb4;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index c3665f9881..fd04a90685 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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 * @@ -47,11 +47,11 @@ addYouAreHereLink('admin', __FILE__); $GLOBALS['theme_mode'] = 'test'; // Import selected theme if not present -if (isPostRequestParameterSet('theme')) { +if (isPostRequestElementSet('theme')) { // Check if theme is there - if (!ifThemeExists(postRequestParameter('theme'))) { + if (!ifThemeExists(postRequestElement('theme'))) { // Import theme - $inc = sprintf("theme/%s/theme.php", SQL_ESCAPE(postRequestParameter('theme'))); + $inc = sprintf("theme/%s/theme.php", SQL_ESCAPE(postRequestElement('theme'))); // Is the theme readable? if (isIncludeReadable($inc)) { @@ -62,7 +62,7 @@ if (isPostRequestParameterSet('theme')) { SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_themes` (`theme_path`,`theme_active`,`theme_ver`,`theme_name`) VALUES ('%s','N','%s','%s')", array( - postRequestParameter('theme'), + postRequestElement('theme'), $GLOBALS['theme_data']['version'], $GLOBALS['theme_data']['name'] ), __FILE__, __LINE__); @@ -71,14 +71,14 @@ VALUES ('%s','N','%s','%s')", rebuildCache('themes', 'them'); // Prepare message - $message = '{%message,ADMIN_THEME_IMPORTED=' . postRequestParameter('theme') . '%}'; + $message = '{%message,ADMIN_THEME_IMPORTED=' . postRequestElement('theme') . '%}'; } else { // Include file not found - $message = '{%message,ADMIN_THEME_INC_404=' . postRequestParameter('theme') . '%}'; + $message = '{%message,ADMIN_THEME_INC_404=' . postRequestElement('theme') . '%}'; } } else { // Theme already imported - $message = '{%message,ADMIN_THEME_ALREADY_INSTALLED=' . postRequestParameter('theme') . '%}'; + $message = '{%message,ADMIN_THEME_ALREADY_INSTALLED=' . postRequestElement('theme') . '%}'; } // Output message