
The other day a customer contacted us with an error on his site after updating his WordPress installation to version 3.2.He was reciving the following error:
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 issue you need to edit the widgets.php located in /public_html/wp-content/themes/arras/library/widgets.php.
Somewhere around line 355 find:
function Arras_Widget_Tag_Cloud() {
$this->WP_Widget_Tag_Cloud();
}
And replace it with
function Arras_Widget_Tag_Cloud() {
parent::__construct();
}
This will allow you to access the admin backend and update your theme. Arras has already updated their theme to fix this issue, you can find it here.