Recent Topics

1 Feb 11, 2014 08:04    

I just upgraded from 5.0.6 to 5.0.7 and noticed that I am not able to disable User Tools in Widgets anymore.

When I uncheck some of the tools and save the changes, I get the message:
Widget settings have been updated

But the tools are still checked and the changes are not saved.

This also seems to affect old blogs where I have disabled tools before. Now all the tools are visible.

2 Feb 12, 2014 08:44

Hello @hypocrite,

Thanks for reporting, this issue is now solved. If you want to add the fix to your code without waiting to the next release, please go to the file /blogs/inc/widgets/model/_widget.class.php and add this code in line 335


$this->load_param_array();

Regards!

3 Feb 16, 2014 23:59

Hi Thanks
For 5.0.7 version _widget.class.php 5866 2014-01-31 09:03:13Z attila $

Make a new line 335 for the code, pushing the current 335 to 336. It is not a replacement for 335
Old code:

$this->param_array[$parname] = $parvalue;

New code

$this->load_param_array();
$this->param_array[$parname] = $parvalue;

Got it :)

There may be a character encoding conflict if copying the code from the post, my site failed at the user tools implementation. I had to type the code by hand.

This site (b2evolution.net) uses charset=iso-8859-1; I use is utf-8


Form is loading...