Hi,
I was looking for ages why my DDBlock did'nt work anymore.
It worked nicely, but after I saved the DDBlock, no go anymore.
I needed to do this: http://drupal.org/node/817680#comment-3066512 to get my DDBlock on D6 on the latest stable release to get it run again.
Thanks for posting the solution there! But it took me 4 hours...
I changed in DD 6 RC6 (the latest stable release) only this:
From
var custom2 = JSON.parse(custom1);
To
var custom2 = JSON.parse(JSON.stringify(custom1));
Greetings,
Martijn