diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-15 21:34:22 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-15 21:34:22 +0200 |
commit | 7f4fefd7ad668086dde57ac7f13ed5d7b12ef862 (patch) | |
tree | aceb87ecb5612ee8ecec418b3dc43cbf9222f340 /core | |
parent | 8322a9e5c225b9ed924225b037804e93b06bbc1f (diff) | |
parent | 30168169b973eb1ca909a9a811b72d28588e1100 (diff) | |
download | nextcloud-server-7f4fefd7ad668086dde57ac7f13ed5d7b12ef862.tar.gz nextcloud-server-7f4fefd7ad668086dde57ac7f13ed5d7b12ef862.zip |
Merge pull request #8211 from owncloud/flush-head-master
Flush the Buffer Early - right after head
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.base.php | 2 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 2 | ||||
-rw-r--r-- | core/templates/layout.user.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index b3e2f4da91c..c519388fa3b 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -30,7 +30,7 @@ ?> <?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 5788d1d5bd3..1f89e3f0403 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -32,7 +32,7 @@ ?> <?php endforeach; ?> </head> - + <?php flush(); ?> <body id="body-login"> <div class="wrapper"><!-- for sticky footer --> <header><div id="header"> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index ba5f6ef9b54..a217446ca73 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -35,7 +35,7 @@ ?> <?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"> |