mailer project continued:
[mailer.git] / inc / modules / member / what-themes.php
index 4adcfa2f4da266bf8e0333097e1c6fed5891fa54..3e5d37b154d0ea50daea5a29a1dd9895d14a210c 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * 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 *
@@ -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--}');
@@ -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