X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=2234042abff8d121b4cd1c2cc88ba51f9ecde290;hb=16e8327d8b9ac2f02cf49c6179e7148fc32b1066;hp=f9c6f8d8fb9bdbf2f591170ea760033cfbb35627;hpb=2379934be6a196a54f4155bb8e24c49b20736969;p=mailer.git diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index f9c6f8d8fb..2234042abf 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 - 2012 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(); } @@ -62,7 +62,7 @@ if (isPostRequestElementSet('member_theme')) { $newTheme = SQL_ESCAPE(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] ?>