diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-05-06 18:39:32 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-05-06 18:39:32 +0200 |
commit | 30579ecb09e2160c450e5d740c36ab052d2ec93d (patch) | |
tree | f4da4ca42812c899ae2c7f864cfc12bfa1716064 /phpBB/adm/style | |
parent | 1264e39aa9b764cfd109a5077cf1bd49f440e995 (diff) | |
parent | c0718fae96a991182f3941dee02599077b5b447d (diff) | |
download | forums-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.html | 4 |
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 |