Browse Source

templates: use p() for getiTunesAppId

tags/v8.0.0alpha1
Pascal de Bruijn 9 years ago
parent
commit
73f50287ff
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      core/templates/layout.guest.php
  2. 1
    1
      core/templates/layout.user.php

+ 1
- 1
core/templates/layout.guest.php View File

@@ -12,7 +12,7 @@
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-itunes-app" content="app-id=<?php print_unescaped($theme->getiTunesAppId()); ?>">
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
<link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
<?php foreach($_['cssfiles'] as $cssfile): ?>

+ 1
- 1
core/templates/layout.user.php View File

@@ -16,7 +16,7 @@
<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 print_unescaped($theme->getiTunesAppId()); ?>">
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'ownCloud'); ?>">

Loading…
Cancel
Save