Browse Source

fixing #15023, getting comments out of HTML output

tags/v8.1.0alpha1
Volker E 9 years ago
parent
commit
599ee5ce4e
3 changed files with 7 additions and 6 deletions
  1. 2
    2
      core/templates/layout.guest.php
  2. 4
    3
      core/templates/layout.user.php
  3. 1
    1
      core/templates/message.html

+ 2
- 2
core/templates/layout.guest.php View File

@@ -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">

+ 4
- 3
core/templates/layout.user.php View File

@@ -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
- 1
core/templates/message.html View File

@@ -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…
Cancel
Save