BUG 6877 the error was fixed

The main problam was that the missing report_to users was not handling correctly but now it work fine
This commit is contained in:
Erik Amaru Ortiz
2011-05-12 17:25:22 -04:00
parent db243f80bf
commit e18b292d78
2 changed files with 12 additions and 17 deletions

View File

@@ -963,9 +963,9 @@
//Add content content step - End
}
catch ( Exception $e ) {
G::SendTemporalMessage($e->getMessage(), 'error', 'string', 3, 100);
G::SendTemporalMessage(G::LoadTranslation('ID_PROCESS_DEF_PROBLEM'), 'error', 'string', 3, 100);
$aMessage = array();
$aMessage['MESSAGE'] = G::LoadTranslation('ID_PROCESS_DEF_PROBLEM').'<br/>'.G::LoadTranslation('ID_CONTACT_ADMIN');
$aMessage['MESSAGE'] = $e->getMessage();
$G_PUBLISH = new Publisher;
$G_PUBLISH->AddContent('xmlform', 'xmlform', 'login/showMessage', '', $aMessage );
G::RenderPage( 'publish', 'blank' );