WordPress 3.2 update have bought down this sites theme.

This tutorial site was running of the famous Arras theme.  Wp 3.2 update has bought the theme down too.  We all survived through the big 3.0 update. I wonder why this comparatively minor update has bought so many issues.

I will probably wait for arras to release an update than to run around looking for a fix..Until then enjoy 2011 Default theme.

UPDATE : The fix was comparatively easy, hence decide to go for it.

If you were to run Arras 1.5.0.1 on the latest build of WordPress 3.2, you would probably run into this error upon activation:

Fatal error: Call to undefined method Arras_Widget_Tag_Cloud::WP_Widget_Tag_Cloud() in ..../wp-content/themes/arras/library/widgets.php on line 355

To fix this, simply replace line 355 of /library/widgets.php from:

function Arras_Widget_Tag_Cloud() { $this->WP_Widget_Tag_Cloud(); }

to:

function Arras_Widget_Tag_Cloud() { parent::__construct(); }