diff options
author | Volker E <volker.e@temporaer.net> | 2015-03-17 23:36:05 +0100 |
---|---|---|
committer | Volker E <volker.e@temporaer.net> | 2015-03-17 23:36:05 +0100 |
commit | 25b77159c453f72efd1e2c622fc4c4046816ca84 (patch) | |
tree | c39da32b28fc87325cc09d27864300b0d16af571 /core/templates/layout.user.php | |
parent | e8c99a60ec2019ab96c0011dd580a2fdffebf994 (diff) | |
download | nextcloud-server-25b77159c453f72efd1e2c622fc4c4046816ca84.tar.gz nextcloud-server-25b77159c453f72efd1e2c622fc4c4046816ca84.zip |
adressing #14979 meta charset declaration should be first in head
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index d8d3ee92ef0..9f8daa5cad3 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -3,13 +3,13 @@ <!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]--> <!--[if (gt IE 9)|!(IE)]><!--><html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><!--<![endif]--> <head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>"> + <meta charset="utf-8"> <title> <?php p(!empty($_['application'])?$_['application'].' - ':''); p($theme->getTitle()); ?> </title> - <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> <meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>"> |