Topic: [1.5] Arras 1.5.0.1 and WordPress 3.2
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 355To 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();
}P.S: The new admin interface blends well with the theme options layout ![]()
EDIT (05/07/11): Alternatively, you can download Arras 1.5.1 here, which has it fixed.
Last edited by zy (2011-07-05 08:10:44)