diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-11-07 23:24:07 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-11-07 23:24:07 +0100 |
commit | 7cd7837e08dfedd4e4768703f3b81ef731221deb (patch) | |
tree | e30bda683fa52280a064d1553a6d503131e08578 /boot.php | |
parent | 66f74379659be970bb28d1d2e8efcdbce13637f3 (diff) | |
download | volse-hubzilla-7cd7837e08dfedd4e4768703f3b81ef731221deb.tar.gz volse-hubzilla-7cd7837e08dfedd4e4768703f3b81ef731221deb.tar.bz2 volse-hubzilla-7cd7837e08dfedd4e4768703f3b81ef731221deb.zip |
reverse logic
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1135,9 +1135,9 @@ class App { public static function build_pagehead() { - $user_scalable = ((local_channel()) ? get_pconfig(local_channel(),'system','user_scalable') : 1); + $user_scalable = ((local_channel()) ? get_pconfig(local_channel(),'system','user_scalable') : 0); if ($user_scalable === false) - $user_scalable = 1; + $user_scalable = 0; $preload_images = ((local_channel()) ? get_pconfig(local_channel(),'system','preload_images') : 0); if ($preload_images === false) |