X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=762b64dc6f85956ee23775aee58113aba5c6fc20;hp=0dad311230328796dea510234312c48e9ba4df68;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=c6017cf76200e2a5e68bd1984fa2d31f0e3be9d8 diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 0dad311230..762b64dc6f 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * + * 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 * @@ -37,7 +37,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isMember()) { redirectToIndexMemberOnlyModule(); } @@ -50,19 +50,19 @@ 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", + sqlQueryEscaped("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 = sqlEscapeString(postRequestElement('member_theme')); // Change to new theme - setTheme($newTheme); + setMailerTheme($newTheme); // Theme saved! displayMessage('{--MEMBER_THEME_SAVED--}'); @@ -79,7 +79,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) { @@ -92,12 +92,12 @@ foreach ($includes as $inc) { loadInclude($inc); // Add found theme to array - $themes['theme_unix'][] = $dir; - $themes['theme_name'][] = $GLOBALS['theme_data']['name']; - $themes['theme_author'][] = $GLOBALS['theme_data']['author']; - $themes['theme_email'][] = $GLOBALS['theme_data']['email']; - $themes['theme_url'][] = $GLOBALS['theme_data']['url']; - $themes['theme_version'][] = $GLOBALS['theme_data']['version']; + array_push($themes['theme_unix'] , $dir); + array_push($themes['theme_name'] , $GLOBALS['theme_data']['name']); + array_push($themes['theme_author'] , $GLOBALS['theme_data']['author']); + array_push($themes['theme_email'] , $GLOBALS['theme_data']['email']); + array_push($themes['theme_url'] , $GLOBALS['theme_data']['url']); + array_push($themes['theme_version'], $GLOBALS['theme_data']['version']); } // END - if } // END - while @@ -127,20 +127,20 @@ foreach ($themes['theme_unix'] as $key => $unix) { ); // Load row template - $OUT .= loadTemplate('member_themes_row', true, $content); + $OUT .= loadTemplate('member_themes_row', TRUE, $content); } // END - foreach if (empty($OUT)) { // No themes found??? $OUT = ' - ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', true) . ' + ' . displayMessage('{--MEMBER_NO_THEMES_FOUND--}', TRUE) . ' '; } // END - if // Load template -loadTemplate('member_themes', false, $OUT); +loadTemplate('member_themes', FALSE, $OUT); // [EOF] ?>