X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-themes.php;h=e260fae8b0ae6fe17754216201e7b4fd42e636c8;hb=c47144dd555bbab4acdf9085e4623900dedb0e7c;hp=62569097bf55aaaeb4dca19926c208eed631cf28;hpb=89c00e43d2ce1dd1afe11c2c8485307342805f97;p=mailer.git diff --git a/inc/modules/member/what-themes.php b/inc/modules/member/what-themes.php index 62569097bf..e260fae8b0 100644 --- a/inc/modules/member/what-themes.php +++ b/inc/modules/member/what-themes.php @@ -38,7 +38,7 @@ if (!defined('__SECURITY')) { } elseif (!IS_MEMBER()) { LOAD_URL("modules.php?module=index"); } elseif ((!EXT_IS_ACTIVE("theme")) && (!IS_ADMIN())) { - ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "theme"); + addFatalMessage(EXTENSION_PROBLEM_EXT_INACTIVE, "theme"); return; } @@ -47,17 +47,17 @@ ADD_DESCR("member", __FILE__); if (!empty($_POST['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", + SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET curr_theme='%s' WHERE userid=%s LIMIT 1", array($_POST['member_theme'], $GLOBALS['userid']), __FILE__, __LINE__); // Set new theme for guests $newTheme = SQL_ESCAPE($_POST['member_theme']); // Change to new theme - set_session("mxchange_theme", $newTheme); + set_session('mxchange_theme', $newTheme); // Theme saved! - LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_THEME_SAVED); + LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_THEME_SAVED')); } // Initialize array @@ -74,11 +74,11 @@ $THEMES = array( $handle = opendir(PATH."theme/") or mxchange_die("Cannot read themes dir!"); while ($entry = readdir($handle)) { // Construct absolute theme.php file name - $theme = sprintf("%stheme/%s/theme.php", PATH, $entry); + $INC = sprintf("theme/%s/theme.php", $entry); - if (($entry != ".") && ($entry != "..") && (FILE_READABLE($theme)) && (THEME_IS_ACTIVE($entry))) { + if (($entry != ".") && ($entry != "..") && (FILE_READABLE($INC)) && (THEME_IS_ACTIVE($entry))) { // Found a valid directory so let's load it's theme.php file - include($theme); + LOAD_INC($INC); // Add found theme to array $THEMES['theme_unix'][] = $entry; @@ -103,29 +103,29 @@ foreach ($THEMES['theme_unix'] as $key => $unix) { if (get_session('mxchange_theme') == $unix) $default = " checked selected"; // Add row - $OUT .= " - - - - ".$THEMES['theme_name'][$key]." - - ".$THEMES['theme_author'][$key]." - - - ".$THEMES['theme_url'][$key]." - - v".$THEMES['theme_ver'][$key]." -\n"; + $OUT .= " + + + + ".$THEMES['theme_name'][$key]." + + ".$THEMES['theme_author'][$key]." + + + ".$THEMES['theme_url'][$key]." + + v".$THEMES['theme_ver'][$key]." +\n"; $SW = 3 - $SW; } if (empty($OUT)) { // No themes found??? - $OUT = " - - ".LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_THEMES_FOUND)." - -\n"; + $OUT = " + + ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_THEMES_FOUND'))." + +\n"; } define('__THEME_LIST', $OUT);