Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
When editing information about a management node, there is an error when trying to update the sysadmin or shadow email addresses. The AJsaveResource function in managementnode.php references an array named $esc, but it is not defined. Adding the following to at the top of the first else block in the function fixes the problem:
$esc = array('sysadminemail' => mysql_real_escape_string($data['sysadminemail']),
'sharedmailbox' => mysql_real_escape_string($data['sharedmailbox']));