diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-17 10:56:47 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-17 10:56:47 +0200 |
commit | 59226892766bdcf626cd486fcbee0b1afa397927 (patch) | |
tree | 75e41a3b850be41b1f94aa223c69e6cae1645d8c | |
parent | 77d6d11b91eb975e451fc1ea3aa870cfee5707a1 (diff) | |
parent | 6cf6c21740b0086e444ab5d4ac293e0c570ec55a (diff) | |
download | nextcloud-server-59226892766bdcf626cd486fcbee0b1afa397927.tar.gz nextcloud-server-59226892766bdcf626cd486fcbee0b1afa397927.zip |
Merge pull request #9694 from owncloud/fix-failing-tests
fix syntax
-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 30940fa18d8..989ffd528f4 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -19,7 +19,7 @@ <meta name="apple-itunes-app" content="app-id=543672169"> <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'); ?>"> + <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'ownCloud'); ?>"> <meta name="mobile-web-app-capable" content="yes"> <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" /> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" /> |