X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=4adcfa2f4da266bf8e0333097e1c6fed5891fa54;hb=f6014bce7255a915872f2f463247440c0d58f9a9;hp=0dad311230328796dea510234312c48e9ba4df68;hpb=43918668518996fcf51f360bcd0d2690427d53a9;p=mailer.git diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 0dad311230..4adcfa2f4d 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.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 * @@ -50,16 +50,16 @@ if ((!isExtensionActive('theme')) && (!isAdmin())) { return; } // END - if -if (isPostRequestParameterSet('member_theme')) { +if (isPostRequestElementSet('member_theme')) { // Save theme to member's profile SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `curr_theme`='%s' WHERE `userid`=%s LIMIT 1", array( - postRequestParameter('member_theme'), + postRequestElement('member_theme'), getMemberId() ), __FILE__, __LINE__); // Set new theme for guests - $newTheme = SQL_ESCAPE(postRequestParameter('member_theme')); + $newTheme = SQL_ESCAPE(postRequestElement('member_theme')); // Change to new theme setTheme($newTheme);