diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-07 11:05:23 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-03-07 11:05:23 +0100 |
commit | d9bd6f325392316f6b2d83d0b712d473d8510fda (patch) | |
tree | 28792b01cb82edd8750e207e687f19a39456db17 /core/templates/layout.public.php | |
parent | c401a8cf2653512c9babfabca4a5d24293e8e7be (diff) | |
download | nextcloud-server-d9bd6f325392316f6b2d83d0b712d473d8510fda.tar.gz nextcloud-server-d9bd6f325392316f6b2d83d0b712d473d8510fda.zip |
Fixed public template
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/templates/layout.public.php')
-rw-r--r-- | core/templates/layout.public.php | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index b9451fe05a2..d3c12f8fd96 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -54,16 +54,18 @@ </a> </span> <?php if($template->getActionCount()>1) { ?> - <span id="header-actions-toggle" class="menutoggle icon-more-white"></span> - <div id="share-menu" class="popovermenu menu"> - <ul> - <?php - /** @var \OCP\AppFramework\Http\Template\IMenuAction $action */ - foreach($template->getOtherActions() as $action) { - print_unescaped($action->render()); - } - ?> - </ul> + <div id="header-secondary-action"> + <span id="header-actions-toggle" class="menutoggle icon-more-white"></span> + <div id="share-menu" class="popovermenu menu"> + <ul> + <?php + /** @var \OCP\AppFramework\Http\Template\IMenuAction $action */ + foreach($template->getOtherActions() as $action) { + print_unescaped($action->render()); + } + ?> + </ul> + </div> </div> <?php } ?> </div> |