X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fstylesheet.php;h=81ee2dca3e8e9eff0c552a2f86a390a2de2663b9;hb=6c756fd5938d311b7d8b63b17cd12cadf166505b;hp=9658652f397752d594c79d5d35b56040394e9648;hpb=07af932574589f4906be5ebf6733fdb95f30e9a2;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 9658652f39..81ee2dca3e 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -109,8 +109,11 @@ if ((isCssOutputMode()) || (getConfig('css_php') == 'DIRECT')) { if ((isInstallationPhase())) { // Default theme first $newTheme = 'default'; - if (isGetRequestParameterSet('theme')) $newTheme = getRequestParameter('theme'); - if (isPostRequestParameterSet('theme')) $newTheme = secureString(postRequestParameter('theme')); + if (isPostRequestParameterSet('theme')) { + $newTheme = postRequestParameter('theme'); + } elseif (isGetRequestParameterSet('theme')) { + $newTheme = getRequestParameter('theme'); + } $OUT .= '?theme=' . $newTheme . '&installing=1'; } else { // Add SVN revision to bypass caching problems