Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 112491
Collapse All | Expand All

(-)horde-2.2.8/lib/Horde.php (-1 / +1 lines)
Lines 234-240 Link Here
234
234
235
        $errortext = _("<b>A fatal error has occurred:</b>") . "<br /><br />\n";
235
        $errortext = _("<b>A fatal error has occurred:</b>") . "<br /><br />\n";
236
        if (is_object($error) && method_exists($error, 'getMessage')) {
236
        if (is_object($error) && method_exists($error, 'getMessage')) {
237
            $errortext .= $error->getMessage() . "<br /><br />\n";
237
            $errortext .= htmlspecialchars($error->getMessage()) . "<br /><br />\n";
238
        }
238
        }
239
        $errortext .= sprintf(_("[line %s of %s]"), $line, $file);
239
        $errortext .= sprintf(_("[line %s of %s]"), $line, $file);
240
240

Return to bug 112491