Skip to content

Commit

Permalink
Fixed issue #12084: HTML body tags missing in login
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 3, 2017
1 parent f708bca commit 35a1051
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions application/core/Survey_Common_Action.php
Expand Up @@ -365,8 +365,11 @@ protected function _renderWrappedTemplate($sAction = '', $aViewUrls = array(), $

if( !Yii::app()->user->isGuest )
{
if(!isset($aData['display']['footer']) || $aData['display']['footer'] !== false)
Yii::app()->getController()->_getAdminFooter('http://manual.limesurvey.org', gT('LimeSurvey online manual'));
if(!isset($aData['display']['footer']) || $aData['display']['footer'] !== false)
Yii::app()->getController()->_getAdminFooter('http://manual.limesurvey.org', gT('LimeSurvey online manual'));
}
else{
echo '</body></html>';
}

$out = ob_get_contents();
Expand Down

0 comments on commit 35a1051

Please sign in to comment.