1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-04 11:41:38 +02:00

The apply to selected items checkbox

git-svn-id: file:///svn/phpbb/trunk@6904 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Dominik Dröscher
2007-01-18 14:28:34 +00:00
parent 1b1d9d2365
commit 916c410044
2 changed files with 11 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ function get_radio_status(index, rb)
*/
function set_colours(id, init, quick)
{
var table = document.getElementById('options' + id);
var table = document.getElementById('table' + id);
var tab = document.getElementById('tab' + id);
if (typeof(quick) != 'undefined')
@@ -120,12 +120,14 @@ function swap_options(pmask, fmask, cat, adv, view)
if (adv_block.style.display == 'block' && adv == true)
{
dE('advanced' + pmask + fmask, -1);
document.getElementById('checkbox' + pmask + fmask).style.display = 'inline';
return;
}
// init colours
if (adv)
{
dE('checkbox' + pmask + fmask, -1);
init_colours(pmask + fmask);
}