aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-05-06 18:39:32 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-05-06 18:39:32 +0200
commit30579ecb09e2160c450e5d740c36ab052d2ec93d (patch)
treef4da4ca42812c899ae2c7f864cfc12bfa1716064 /phpBB/adm/style
parent1264e39aa9b764cfd109a5077cf1bd49f440e995 (diff)
parentc0718fae96a991182f3941dee02599077b5b447d (diff)
downloadforums-30579ecb09e2160c450e5d740c36ab052d2ec93d.tar
forums-30579ecb09e2160c450e5d740c36ab052d2ec93d.tar.gz
forums-30579ecb09e2160c450e5d740c36ab052d2ec93d.tar.bz2
forums-30579ecb09e2160c450e5d740c36ab052d2ec93d.tar.xz
forums-30579ecb09e2160c450e5d740c36ab052d2ec93d.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/10860] Fixing js error in updater
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r--phpBB/adm/style/install_update_diff.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/install_update_diff.html b/phpBB/adm/style/install_update_diff.html
index 34bf1366c2..b5d25e82f2 100644
--- a/phpBB/adm/style/install_update_diff.html
+++ b/phpBB/adm/style/install_update_diff.html
@@ -11,12 +11,12 @@
// <![CDATA[
function resize_panel()
{
- var block = document.getElementById('codepanel');
+ var block = document.getElementById('diff_content');
var height;
if (window.innerHeight)
{
- height = window.innerHeight - 150;
+ height = window.innerHeight - 200;
block.style.height = height + 'px';
}
else