Detailed Description:
an entry error in the following code in the file
action.do_userchangesettings.php
catch( \Exception $e ) {
$err = $e->GetMessage();
$params['error'] = 1;
$params['mesage'] = $e->GetMessage(); <-----here "message"
$this->myRedirect( $id, 'changesettings', $returnid, $params );
}
not tested as above but I think the problem is the same on the file
action.addprop.php
if( isset($params['propname']) ) {
$propname = trim($params['propname']);
$title = $this->Lang('editprop',$propname);
$defn = $this->GetPropertyDefn($propname);
if( $defn == FALSE ) {
$parms = array();
$parms['error'] = 1;
$parms['mesage'] = $this->Lang('error_propnotfound'); <-----here
"message"
$this->RedirectToTab($id,'properties',$parms);
return;
}