mirror of
https://github.com/nextcloud/server.git
synced 2026-04-20 22:00:39 -04:00
fixing #15023, getting comments out of HTML output
This commit is contained in:
parent
0e4d52f9d2
commit
599ee5ce4e
3 changed files with 7 additions and 6 deletions
|
|
@ -22,8 +22,8 @@
|
|||
</head>
|
||||
<body id="<?php p($_['bodyid']);?>">
|
||||
<?php include('layout.noscript.warning.php'); ?>
|
||||
<div class="wrapper"><!-- for sticky footer -->
|
||||
<div class="v-align"><!-- vertically centred box -->
|
||||
<div class="wrapper">
|
||||
<div class="v-align">
|
||||
<?php if ($_['bodyid'] === 'body-login' ): ?>
|
||||
<header role="banner">
|
||||
<div id="header">
|
||||
|
|
|
|||
|
|
@ -118,9 +118,10 @@
|
|||
</a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
|
||||
<!-- show "More apps" link to app administration directly in app navigation, as last entry -->
|
||||
<?php if(OC_User::isAdminUser(OC_User::getUser())): ?>
|
||||
<?php
|
||||
/* show "More apps" link to app administration directly in app navigation, as last entry */
|
||||
if(OC_User::isAdminUser(OC_User::getUser())):
|
||||
?>
|
||||
<li id="apps-management">
|
||||
<a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps')); ?>" title=""
|
||||
<?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
<div id="{dialog_name}" title="{title} "><!-- the ' ' after {title} fixes ie8, see http://stackoverflow.com/a/5313137/828717 -->
|
||||
<div id="{dialog_name}" title="{title} "><?php /* the ' ' after {title} fixes ie8, see http://stackoverflow.com/a/5313137/828717 */ ?>
|
||||
<p><span class="ui-icon ui-icon-{type}"></span>{message}</p>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue