diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index 8cc235bf81824c5444fd424079b04f342fd7cee4..eb8477ca9e947be3e2bc4a6dd15935096e09a51d 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -123,6 +123,10 @@ class TemplateLayout extends \OC_Template { } else if ($renderAs == 'guest') { parent::__construct('core', 'layout.guest'); $this->assign('bodyid', 'body-login'); + } else if ($renderAs == 'public') { + parent::__construct('core', 'layout.public'); + $this->assign( 'appid', $appId ); + $this->assign('bodyid', 'body-public'); } else { parent::__construct('core', 'layout.base');