diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-05-06 18:39:23 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-05-06 18:39:23 +0200 |
commit | c0718fae96a991182f3941dee02599077b5b447d (patch) | |
tree | 8e0ee492f49ac72e2e79085d32962e5fd7e9656b /phpBB/adm | |
parent | 9d542aec1ee43d91eb1ec8bdbb18120947d610b5 (diff) | |
parent | a960bd6790a60bd1023e632230848e9e786c8921 (diff) | |
download | forums-c0718fae96a991182f3941dee02599077b5b447d.tar forums-c0718fae96a991182f3941dee02599077b5b447d.tar.gz forums-c0718fae96a991182f3941dee02599077b5b447d.tar.bz2 forums-c0718fae96a991182f3941dee02599077b5b447d.tar.xz forums-c0718fae96a991182f3941dee02599077b5b447d.zip |
Merge remote-tracking branch 'cyberalien/ticket/10860' into develop-olympus
* cyberalien/ticket/10860:
[ticket/10860] Fixing js error in updater
Diffstat (limited to 'phpBB/adm')
-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 4d8bcfd1fc..922b4aca31 100644 --- a/phpBB/adm/style/install_update_diff.html +++ b/phpBB/adm/style/install_update_diff.html @@ -15,12 +15,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 |