X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=1cf59982ae7a76821d536551e06ad06a2197a95b;hb=de454a4f3cba4ac73cb9a0bc4dc02f81bdd4e53f;hp=2a466cdbee5df30b2873a03fa309b645ad4f8dd8;hpb=ac30b1396a429f5c40091a1e955cf0f9548aad7e;p=mailer.git diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 2a466cdbee..1cf59982ae 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -41,14 +41,14 @@ if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } elseif (!IS_MEMBER()) { - LOAD_URL("modules.php?module=index"); -} elseif ((!EXT_IS_ACTIVE("theme")) && (!IS_ADMIN())) { - addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "theme"); + LOAD_URL('modules.php?module=index'); +} elseif ((!EXT_IS_ACTIVE('theme')) && (!IS_ADMIN())) { + addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'theme'); return; } // Add description as navigation point -ADD_DESCR("member", __FILE__); +ADD_DESCR('member', __FILE__); if (REQUEST_ISSET_POST(('member_theme'))) { // Save theme to member's profile @@ -62,7 +62,7 @@ if (REQUEST_ISSET_POST(('member_theme'))) { set_session('mxchange_theme', $newTheme); // Theme saved! - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_THEME_SAVED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_THEME_SAVED')); } // Initialize array @@ -102,9 +102,9 @@ closedir($handle); array_pk_sort($THEMES, array("theme_name")); // Generate output lines for the template -$OUT = ""; $SW = 2; +$OUT = ''; $SW = 2; foreach ($THEMES['theme_unix'] as $key => $unix) { - $default = ""; + $default = ''; if (get_session('mxchange_theme') == $unix) $default = " selected=\"selected\""; // Add row @@ -128,7 +128,7 @@ if (empty($OUT)) { // No themes found??? $OUT = " - ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_THEMES_FOUND'))." + ".LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_THEMES_FOUND'))." \n"; }