More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / modules / guest / action-themes.php
index 3c9a09c57351cba6bf1d6cf9f9dce99f878a6e96..52e22c9fd9967b6b13d18b63ba9ec9eb1e2b87a4 100644 (file)
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } elseif ((!EXT_IS_ACTIVE('theme')) && (!IS_ADMIN())) {
-       addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), 'theme');
+       addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('theme'));
        return;
 }
 
@@ -54,11 +54,11 @@ $num_themes = SQL_NUMROWS($result_themes);
 if ($num_themes > 1) {
        // If more than 1 is installed output selection box
        $act = '';
-       if (!empty($GLOBALS['action'])) $act = SQL_ESCAPE($GLOBALS['action']);
-       $OUT = THEME_SELECTION_BOX('index', $act, $GLOBALS['what'], $result_themes);
+       if (isActionSet()) $act = getAction();
+       $OUT = generateThemeSelectionBox('index', $act, getWhat(), $result_themes);
 } elseif (($num_themes == 1) || ((!IS_ADMIN()) && ($num_themes == 0))) {
        // If there's only one just print it's name
-       define('__THEME_NAME', GET_CURR_THEME_NAME());
+       define('__THEME_NAME', getCurrentThemeName());
        $OUT = LOAD_TEMPLATE("theme_one", true);
 } elseif (IS_ADMIN()) {
        // If there is no theme installed and there's an admin notify him!