Summary:
Change user settings message parameter and character problem
Detailed Description:
When changing user settings message parameter sent in URL fails if message read
from lang files contains foreign charachters like & auml ; In this situation &
will be encoded to &
This will be fixed when changing (around line 57 ) in
function.user_changesettings
if( isset( $params['error'] ) )
{
$this->smarty->assign('error', $params['error'] );
}
if( isset( $params['message'] ) )
{
$this->smarty->assign('message', $params['message'] );
}
--->
if( isset( $params['error'] ) )
{
$this->smarty->assign('error', cms_html_entity_decode($params['error'] ));
}
if( isset( $params['message'] ) )
{
$this->smarty->assign('message', cms_html_entity_decode($params['message']
));
}