Browse Source

fixing #15023, getting comments out of HTML output

remotes/origin/etag-endpoint
Volker E 11 years ago
parent
commit
599ee5ce4e
  1. 4
      core/templates/layout.guest.php
  2. 7
      core/templates/layout.user.php
  3. 2
      core/templates/message.html

4
core/templates/layout.guest.php

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

7
core/templates/layout.user.php

@ -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; ?>>

2
core/templates/message.html

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