Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
Update error.php
Browse files Browse the repository at this point in the history
Undo htmlspecialchars
  • Loading branch information
Emoe committed Jan 30, 2016
1 parent c362707 commit 158c0ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/error.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static function exception($e) {
</head>
<body>
<h1>Uncaught Exception</h1>
<p><code>' . htmlspecialchars($e->getMessage()) . '</code></p>
<p><code>' . $e->getMessage() . '</code></p>
<h3>Origin</h3>
<p><code>' . substr($e->getFile(), strlen(PATH)) . ' on line ' . $e->getLine() . '</code></p>
<h3>Trace</h3>
Expand Down Expand Up @@ -112,4 +112,4 @@ public static function log($e) {
}
}

}
}

0 comments on commit 158c0ea

Please sign in to comment.