Hi All
First off, thanks for the latest release... gives me something to do on a wet Easter weekend
Unfortunately, I am getting errors from ManagerManager while editing resources in the manager:
Warning: htmlentities() expects at most 3 parameters, 4 given in E:\xampp\htdocs\modx-1.0.3-clean\assets\plugins\managermanager\functions\utilities.inc.php on line 80
The code in question uses the
double_encode parameter in a call to htmlentities... this parameter was introduced in php version 5.2.3, so it fails on earlier versions.
(I have tried it on PHP 5.2.0 and 4.4.4)
Quick fix:
Edit the file: /assets/plugins/managermanager/functions/utilities.php
Find this line (approx line 80):
return htmlentities($str, ENT_QUOTES, $modx->config['modx_charset'], false);
And replace it with:
return htmlentities($str, ENT_QUOTES, $modx->config['modx_charset']);
Seems this code was introduced in response to this issue:
http://svn.modxcms.com/jira/browse/ADDON-115
Cheers
Gerard