Updating to WP 3.2 generates a fatal error code


Fatal error: Call to undefined method Arras_Widget_Tag_Cloud::WP_Widget_Tag_Cloud() in /home/XXXXX/public_html/wp-content/themes/arras/library/widgets.php on line 404/405
To fix this, simply replace line 404 of /library/widgets.php from:
function Arras_Widget_Tag_Cloud() {
    $this->WP_Widget_Tag_Cloud();
}
to:
function Arras_Widget_Tag_Cloud() {
    parent::__construct();
}

0 comments:

Post a Comment