X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fstylesheet.php;h=715bf8fc4cf23fd531bd8670b231d45a49c12848;hb=ffe68abca0e9c3cffd40a43ded2a134343d588f5;hp=81ee2dca3e8e9eff0c552a2f86a390a2de2663b9;hpb=90ea643fa8c32b94f6f5ed636730d87eb31bba6b;p=mailer.git diff --git a/inc/stylesheet.php b/inc/stylesheet.php index 81ee2dca3e..715bf8fc4c 100644 --- a/inc/stylesheet.php +++ b/inc/stylesheet.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -109,10 +109,10 @@ if ((isCssOutputMode()) || (getConfig('css_php') == 'DIRECT')) { if ((isInstallationPhase())) { // Default theme first $newTheme = 'default'; - if (isPostRequestParameterSet('theme')) { - $newTheme = postRequestParameter('theme'); - } elseif (isGetRequestParameterSet('theme')) { - $newTheme = getRequestParameter('theme'); + if (isPostRequestElementSet('theme')) { + $newTheme = postRequestElement('theme'); + } elseif (isGetRequestElementSet('theme')) { + $newTheme = getRequestElement('theme'); } $OUT .= '?theme=' . $newTheme . '&installing=1'; } else {