diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php
index e74cd4b8cd2..44731172760 100644
--- a/core/templates/layout.base.php
+++ b/core/templates/layout.base.php
@@ -12,7 +12,9 @@
getTitle()); ?>
-
+
">
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index 03682a24193..f006a6fda38 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -20,7 +20,9 @@ p($theme->getTitle());
?>
">
-
+
getiTunesAppId() !== '') { ?>
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php
index 90aefe0b8a8..10b64fcdef8 100644
--- a/core/templates/layout.public.php
+++ b/core/templates/layout.public.php
@@ -15,7 +15,9 @@ p($theme->getTitle());
?>
">
-
+
getiTunesAppId() !== '') { ?>
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 3293fc0acd7..a70fa6dcdbc 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -30,7 +30,9 @@ p($theme->getTitle());
?>
">
-
+
getiTunesAppId() !== '') { ?>
diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php
index 7b33f88d4db..272557f5177 100644
--- a/lib/private/TemplateLayout.php
+++ b/lib/private/TemplateLayout.php
@@ -8,6 +8,7 @@
namespace OC;
use bantu\IniGetWrapper\IniGetWrapper;
+use OC\AppFramework\Http\Request;
use OC\Authentication\Token\IProvider;
use OC\Files\FilenameValidator;
use OC\Search\SearchQuery;
@@ -20,6 +21,7 @@ use OCP\Defaults;
use OCP\IConfig;
use OCP\IInitialStateService;
use OCP\INavigationManager;
+use OCP\IRequest;
use OCP\IURLGenerator;
use OCP\IUserSession;
use OCP\L10N\IFactory;
@@ -286,6 +288,13 @@ class TemplateLayout extends \OC_Template {
}
}
+ $request = \OCP\Server::get(IRequest::class);
+ if ($request->isUserAgent([Request::USER_AGENT_CLIENT_IOS, Request::USER_AGENT_SAFARI])) {
+ // Prevent auto zoom with iOS but still allow user zoom
+ // On chrome (and others) this does not work (will also disable user zoom)
+ $this->assign('viewport_maximum_scale', '1.0');
+ }
+
$this->assign('initialStates', $this->initialState->getInitialStates());
$this->assign('id-app-content', $renderAs === TemplateResponse::RENDER_AS_USER ? '#app-content' : '#content');