]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing #15023, getting comments out of HTML output
authorVolker E <volker.e@temporaer.net>
Sat, 21 Mar 2015 06:10:46 +0000 (07:10 +0100)
committerVolker E <volker.e@temporaer.net>
Sat, 21 Mar 2015 06:10:46 +0000 (07:10 +0100)
core/templates/layout.guest.php
core/templates/layout.user.php
core/templates/message.html

index 5c89e5591c385d651d0526ab64afdb96a4ca87ff..0557e89ce710c3b283b3406a25e13eff28c62b3b 100644 (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">
index e06ed00098f58d3a9eebc03515acbd15e194f625..138545f2ccc1b7f7cfe85bab9f9cdd9d6c05ce04 100644 (file)
                                                </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; ?>>
index cd642231a9eabe0b8400872c369d87af2d930882..a98fd31a7feb129c39147e066f835dbb221fa0fe 100644 (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>