diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-08-09 18:32:44 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-08-09 18:32:44 +0200 |
commit | 6f9963b2d9ea7d789e63f893c2c8692b71c1a343 (patch) | |
tree | 70d49dc06e26f0228103414e6c946ea51df8b75c /core/templates | |
parent | f12f8354858789f1873442b3694992c014ccbc45 (diff) | |
parent | cbe3595f64c7883a2a63b7cbd9941cf0a56cd80e (diff) | |
download | nextcloud-server-6f9963b2d9ea7d789e63f893c2c8692b71c1a343.tar.gz nextcloud-server-6f9963b2d9ea7d789e63f893c2c8692b71c1a343.zip |
Merge pull request #10293 from owncloud/fix-headers-being-sent
using flush() here is pointless as we render the layout into a memory bu...
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.base.php | 1 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 1 | ||||
-rw-r--r-- | core/templates/layout.user.php | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index b99f603fe0b..7895e624507 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -30,7 +30,6 @@ ?> <?php endforeach; ?> </head> - <?php flush(); ?> <body id="body-public"> <?php print_unescaped($_['content']); ?> </body> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index c4b69a950a0..a2d386e86d4 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -32,7 +32,6 @@ ?> <?php endforeach; ?> </head> - <?php flush(); ?> <body id="body-login"> <div class="wrapper"><!-- for sticky footer --> <div class="v-align"><!-- vertically centred box --> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 989ffd528f4..ce1522b717c 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -39,7 +39,6 @@ ?> <?php endforeach; ?> </head> - <?php flush(); ?> <body id="<?php p($_['bodyid']);?>"> <noscript><div id="nojavascript"><div><?php print_unescaped($l->t('This application requires JavaScript to be enabled for correct operation. Please <a href="http://enable-javascript.com/" target="_blank">enable JavaScript</a> and re-load this interface.')); ?></div></div></noscript> <div id="notification-container"> |