aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-08-13 15:32:15 +0200
committermarijus <mario@mariovavti.com>2014-08-13 15:32:15 +0200
commitbc85f7d6e3f43bee3a0362276d215dab6c72e12d (patch)
tree692d92d7ee044d7a274fa8c8a5b729390e05cb3a /boot.php
parent802a5c2946dbb03e3869e4c4b2b22c557149847e (diff)
downloadvolse-hubzilla-bc85f7d6e3f43bee3a0362276d215dab6c72e12d.tar.gz
volse-hubzilla-bc85f7d6e3f43bee3a0362276d215dab6c72e12d.tar.bz2
volse-hubzilla-bc85f7d6e3f43bee3a0362276d215dab6c72e12d.zip
provide an expert option to opt out from user zoom on mobile devices
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index f7c16c646..a6ce76ada 100755
--- a/boot.php
+++ b/boot.php
@@ -980,6 +980,10 @@ class App {
function build_pagehead() {
+ $user_scalable = ((local_user()) ? get_pconfig(local_user(),'system','user_scalable') : 1);
+ if ($user_scalable === false)
+ $user_scalable = 1;
+
$interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
if($interval < 10000)
$interval = 40000;
@@ -993,6 +997,7 @@ class App {
*/
$tpl = get_markup_template('head.tpl');
$this->page['htmlhead'] = replace_macros($tpl, array(
+ '$user_scalable' => $user_scalable,
'$baseurl' => $this->get_baseurl(),
'$local_user' => local_user(),
'$generator' => RED_PLATFORM . ' ' . RED_VERSION,