The most reported bug in MT3.2 beta!
I am not sure whether to be proud of this or not, but my friends at work told me today that the #1 most reported bug in MovableType 3.2 is the fact that BookQueueToo doesn't work in MT3.2 Beta 1! On one hand I am glad that MT is so stable that people are more concerned about plugins than they are about the core app, but on the other hand, BookQueueToo is my plugin! Damn.
But the good news is that I have a fix, er a hack rather, for the problem: simply comment out lines 874 and 878 in lib/MT.pm. Or apply the following patch:
--- cut here ---
874,878c874,878
< if ($AUTOLOAD !~ m/::DESTROY$/) {
< # Unknown routine called
< my ($pkg, $file, $line) = caller();
< eval qq{# line $line "$file"\ndie "Undefined subroutine &$AUTOLOAD called"}; die;
< }
---
> # if ($AUTOLOAD !~ m/::DESTROY$/) {
> # # Unknown routine called
> # my ($pkg, $file, $line) = caller();
> # eval qq{# line $line "$file"\ndie "Undefined subroutine &$AUTOLOAD called"}; die;
> # }
--- cut here ---

