Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1204 → Rev 1205

/trunk/includes/classes/OIDplusGui.class.php
44,7 → 44,11
$out['title'] = _L('Error');
$out['icon'] = 'img/error.png';
$htmlmsg = $e instanceof OIDplusException ? $e->getHtmlMessage() : htmlentities($e->getMessage());
if (strtolower(substr($htmlmsg, 0, 3)) === '<p ') {
$out['text'] = $htmlmsg;
} else {
$out['text'] = '<p>'.$htmlmsg.'</p>';
}
if (OIDplus::baseConfig()->getValue('DEBUG')) {
$out['text'] .= self::getExceptionTechInfo($e);
}