“The Events Calendar” Issues in WP 3.2

I discovered the answer: The new version of WordPress using version 1.6 of JQuery. In the file events-meta-box.php, change anywhere where it says:

.attr('checked') == true

to:

.prop("checked", true)

There should be three locations where you fix it.